/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF; --off-white: #F5F5F7; --light-gray: #E8E8EC; --mid-gray: #B8B8C0;
  --dark-gray: #2A2A32; --black: #1A1A1E; --cyan: #07b1da; --blue: #183862;
  --red: #f06757; --pink: #5BA3D0;
  --navy: #183862; --navy-deep: #0F2447; --coral: #f06757;
  --font-display: 'Saira', 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', 'IBM Plex Sans JP', system-ui, -apple-system, sans-serif;
  --font-jp: 'IBM Plex Sans JP', sans-serif;
  --radius: 16px; --radius-sm: 10px; --radius-lg: 24px; --max-width: 1240px; --header-h: 88px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 400; color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
.btn, .nav a, .nav-dropdown-trigger, .nav-dropdown-menu a, .header-cta, .section-label, .matrix-cat-num, .bd-ask-tag, .bd-desk-flag, .bts-members-badge, .bts-members-link, .matrix-tier-pill, .matrix-panel-cat-title, .matrix-notes h4, .matrix-fee-row td, .matrix-table thead th, .bd-network-note h4, .lang-switcher-trigger, .lang-switcher-menu a, .mobile-lang-btn { font-family: var(--font-display); }
.section-title, .insight-hero-title, .hero h1 { font-family: var(--font-display); font-weight: 800; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
.section-title .accent { color: var(--blue); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 60px; font-weight: 600; font-size: 14px; letter-spacing: 0.3px; transition: all 0.3s ease; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); }
.btn svg { width: 16px; height: 16px; }
.empty-state { font-size: 15px; color: var(--mid-gray); padding: 48px 0; text-align: center; }
.tag-inline { display: inline-block; background: var(--off-white); padding: 4px 10px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark-gray); }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; line-height: 0; }
.logo-img { height: 72px; width: auto; display: block; }
.logo--footer .logo-img { height: 88px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; letter-spacing: 0.2px; color: var(--dark-gray); transition: color 0.2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--black); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width 0.3s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 16px; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-bottom: none; border-right: none; transform: translateX(-50%) rotate(45deg); z-index: 1; }
.nav-dropdown-menu a { display: block; padding: 10px 24px; font-size: 14px; font-weight: 500; color: var(--dark-gray); white-space: nowrap; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-top: none; transition: background 0.15s, color 0.15s; }
.nav-dropdown-menu a:first-child { border-top: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-sm) var(--radius-sm) 0 0; padding-top: 14px; }
.nav-dropdown-menu a:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); padding-bottom: 14px; }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--blue); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-disabled { display: block; padding: 10px 24px; font-size: 14px; font-weight: 500; color: var(--mid-gray); white-space: nowrap; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-top: none; cursor: not-allowed; opacity: 0.55; font-family: var(--font-display); }
.nav-dropdown-menu .nav-dropdown-disabled:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); padding-bottom: 14px; }
.mobile-nav-group { padding: 8px 0; display: flex; flex-direction: column; gap: 0; border-bottom: none; }
.mobile-nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--mid-gray); padding: 8px 0 4px; }
.mobile-nav-group a { padding-left: 16px; font-size: 17px; display: block; padding-top: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--light-gray); }
.mobile-nav-disabled { padding-left: 16px; font-size: 17px; display: block; padding-top: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--light-gray); color: var(--mid-gray); opacity: 0.55; cursor: not-allowed; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switcher { position: relative; }
.lang-switcher-trigger { display: flex; align-items: center; gap: 4px; padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--black); background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 8px; cursor: pointer; letter-spacing: 0.5px; transition: all 0.2s; }
.lang-switcher-trigger:hover { background: var(--white); border-color: var(--mid-gray); }
.lang-switcher-trigger svg { opacity: 0.5; }
.lang-switcher-menu { display: none; position: absolute; top: 100%; right: 0; padding-top: 6px; z-index: 100; }
.lang-switcher:hover .lang-switcher-menu, .lang-switcher:focus-within .lang-switcher-menu { display: block; }
.lang-switcher-menu-inner { background: #FFFFFF; border: 1px solid var(--light-gray); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); min-width: 140px; overflow: hidden; }
.lang-switcher-menu a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--dark-gray); background: #FFFFFF; transition: background 0.15s, color 0.15s; }
.lang-switcher-menu a:hover { background: var(--off-white); color: var(--black); }
.lang-switcher-menu a.active { color: var(--blue); font-weight: 600; background: #EEF4FF; }
.mobile-lang-switcher { display: flex; gap: 6px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--light-gray); }
.mobile-lang-btn { padding: 8px 16px; font-size: 14px; font-weight: 600; border-radius: 8px; color: var(--mid-gray); background: var(--off-white); transition: all 0.2s; letter-spacing: 0.5px; text-align: center; flex: 1; }
.mobile-lang-btn.active { background: var(--blue); color: var(--white); }
.header-cta { padding: 12px 28px; background: var(--black); color: var(--white); font-size: 15px; font-weight: 600; border-radius: 60px; letter-spacing: 0.3px; transition: background 0.3s; }
.header-cta:hover { background: var(--blue); }
.header-cta--red { background: var(--red); }
.header-cta--red:hover { background: #e63636; }
.mobile-toggle { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; }
.mobile-toggle span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; flex-direction: column; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background-color: #FFFFFF; padding: 32px; z-index: 9999; overflow-y: auto; -webkit-overflow-scrolling: touch; }
body.menu-open { overflow: hidden; }
.mobile-nav { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a { font-size: 18px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--light-gray); }

/* ===== HERO ===== */
.hero { margin-top: var(--header-h); position: relative; overflow: hidden; min-height: calc(100vh - var(--header-h) - 88px); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(16,16,20,0.95) 0%, rgba(16,16,20,0.85) 25%, rgba(16,16,20,0.4) 45%, rgba(16,16,20,0.05) 65%, transparent 100%); z-index: 1; }
.hero-inner { padding: 60px 32px 60px 8%; position: relative; z-index: 2; width: 100%; }
.hero-content { color: var(--white); max-width: 480px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 60px; font-size: 12px; font-weight: 500; color: var(--cyan); margin-bottom: 32px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px; }
.hero p { font-size: 15px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 16px; }
.hero p:last-of-type { margin-bottom: 32px; }
.hero p strong { font-weight: 600; color: rgba(255,255,255,0.95); }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== LIVE BAR ===== */
.live-bar { padding: 24px 0; background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.08); }
.live-bar-inner { display: flex; justify-content: center; align-items: center; gap: 56px; }
.live-clock, .live-rates { display: flex; align-items: center; gap: 24px; }
.live-clock-item, .live-rate-item { display: flex; align-items: center; gap: 10px; }
.live-clock-sep, .live-rate-sep { color: rgba(255,255,255,0.15); font-size: 20px; }
.live-flag { font-size: 24px; }
.live-city { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 500; }
.live-time { font-size: 24px; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.live-rate-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.5); }
.live-rate-arrow { font-size: 15px; color: rgba(255,255,255,0.3); }
.live-rate-value { font-size: 24px; font-weight: 700; color: var(--cyan); font-variant-numeric: tabular-nums; }
.live-rate-unit { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 500; }
.live-date { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 400; }

/* ===== HERO HEIGHT SYSTEM — narrow viewport caps =====
   Desktop hero heights are unified to fill the viewport below the header
   (see individual .hero / .wg-hero / .wgd-hero / .about-hero / .insight-hero /
   .event-detail-hero / .ms-hero rules). On narrow viewports (tablet portrait,
   phones) those full-height heroes get disproportionate, so cap them. */
@media (max-width: 1024px) {
  .wg-hero,
  .wgd-hero,
  .about-hero,
  .about-hero--tall,
  .insight-hero,
  .event-detail-hero,
  .ms-hero { min-height: min(calc(100vh - var(--header-h)), 640px); }
  /* Homepage hero shares the viewport with the live bar that follows it */
  .hero { min-height: min(calc(100vh - var(--header-h) - 88px), 560px); }
}
@media (max-width: 600px) {
  .wg-hero,
  .wgd-hero,
  .about-hero,
  .about-hero--tall,
  .insight-hero,
  .event-detail-hero,
  .ms-hero { min-height: min(calc(100vh - var(--header-h)), 560px); }
  /* Live-bar on mobile wraps to 2 rows (~128px instead of ~88px) */
  .hero { min-height: min(calc(100vh - var(--header-h) - 128px), 480px); }
}

/* ===== SECTION SNAP SCROLLING — proximity =====
   Each <section> becomes a gentle scroll-snap target. The browser only snaps
   when the user scrolls *close* to a boundary; mid-section scrolling is left
   alone. Header height is reserved via scroll-padding-top so snapped sections
   sit just below the fixed header instead of being clipped by it.

   Opt-out per page: <body data-no-snap> disables all snapping on that page. */
html { scroll-snap-type: y proximity; scroll-padding-top: var(--header-h); }
body[data-no-snap] { scroll-snap-type: none; }
section { scroll-snap-align: start; scroll-snap-stop: normal; }
/* Don't snap to compact transitional strips — they're meant to flow with the
   section above (e.g. the live time/currency bar under the homepage hero). */
.live-bar,
.global-cta { scroll-snap-align: none; }
/* Respect users who explicitly ask for less motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
}

/* ===== SCROLL INDICATOR =====
   Subtle "you can scroll" hint, fixed near the bottom of the viewport.
   Injected by JS after 3 seconds of inactivity if the user hasn't scrolled.
   Disappears on the first scroll. Touch devices get an upward chevron
   (swipe-up gesture); pointer devices get a mouse with an animated wheel. */
.scroll-indicator {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
  transition: opacity 700ms ease, transform 700ms ease;
}
.scroll-indicator.is-visible {
  opacity: 0.78;
  transform: translateX(-50%) translateY(0);
}
.scroll-indicator svg { display: block; width: 28px; height: 44px; }
@media (max-width: 600px) {
  .scroll-indicator { bottom: 20px; }
  .scroll-indicator svg { width: 24px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator svg animate,
  .scroll-indicator svg animateTransform { display: none; }
}

/* ===== HOME LEADERSHIP ===== */
.home-leadership { padding: 80px 0; }
.home-leadership-placeholder { text-align: center; padding: 48px 24px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); }
.home-leadership-placeholder svg { margin-bottom: 16px; }
.home-leadership-placeholder p { font-size: 15px; color: var(--dark-gray); font-weight: 400; max-width: 420px; margin: 0 auto; line-height: 1.6; }

/* ===== HOME EVENTS ===== */
.home-events { padding: 80px 0; background: var(--off-white); }
.home-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-event-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--light-gray); transition: all 0.3s; display: block; }
.home-event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.home-event-thumb { height: 160px; background: linear-gradient(135deg, var(--light-gray), var(--mid-gray)); position: relative; }
.home-event-thumb .tag { position: absolute; top: 12px; left: 12px; background: var(--white); padding: 4px 12px; border-radius: 60px; font-size: 11px; font-weight: 600; }
.home-event-body { padding: 24px; }
.home-event-date { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.home-event-day { font-size: 28px; font-weight: 900; color: var(--blue); line-height: 1; }
.home-event-month { font-size: 12px; font-weight: 700; color: var(--dark-gray); display: block; line-height: 1.2; }
.home-event-year { font-size: 11px; color: var(--mid-gray); display: block; }
.home-event-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.home-event-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 8px; }
.home-event-venue { font-size: 12px; color: var(--mid-gray); }
.home-events-placeholder { text-align: center; padding: 48px 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); }
.home-events-placeholder svg { margin-bottom: 16px; }
.home-events-placeholder p { font-size: 15px; color: var(--dark-gray); font-weight: 400; max-width: 420px; margin: 0 auto; }

/* ===== HIGHLIGHTS (3 horizontal cards) ===== */
.highlights { padding: 80px 0; background: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight-card { background: var(--off-white); border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.highlight-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.highlight-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.highlight-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), #4D7FFF); }
.highlight-card:nth-child(3)::before { background: linear-gradient(90deg, var(--red), var(--pink)); }
.highlight-card:nth-child(4)::before { background: linear-gradient(90deg, #5BA3D0, #f06757); }
.highlights-grid--4 { grid-template-columns: repeat(4, 1fr); }
.highlight-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }

/* ===== HOME ACTION CARDS ===== */
.home-actions { padding: 0 0 80px; background: var(--white); }
.home-actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-action-card { display: flex; flex-direction: column; background: var(--black); border-radius: var(--radius-lg); padding: 36px 32px; color: var(--white); transition: transform 0.3s, box-shadow 0.3s; }
.home-action-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.home-action-icon { margin-bottom: 20px; }
.home-action-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.home-action-card p { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.7; flex: 1; }
.home-action-link { font-size: 14px; font-weight: 600; color: var(--cyan); margin-top: 20px; }
.highlight-icon--cyan { background: rgba(7,177,218,0.1); }
.highlight-icon--blue { background: rgba(24,56,98,0.1); }
.highlight-icon--red { background: rgba(240,103,87,0.1); }
.highlight-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.highlight-card p { font-size: 16px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; }

/* ===== PILLARS (3+2 layout) ===== */
.pillars { padding: 100px 0; background: var(--off-white); }
.pillars-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.pillars-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.pillars-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar-card-lg { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.pillar-card-lg:hover { transform: translateY(-4px); border-color: var(--light-gray); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.pillar-graphic { width: 100%; height: 120px; border-radius: 16px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.pillar-graphic--cyan { background: linear-gradient(135deg, rgba(7,177,218,0.08) 0%, rgba(7,177,218,0.03) 100%); }
.pillar-graphic--blue { background: linear-gradient(135deg, rgba(24,56,98,0.08) 0%, rgba(24,56,98,0.03) 100%); }
.pillar-graphic--dark { background: linear-gradient(135deg, rgba(58,58,66,0.06) 0%, rgba(58,58,66,0.02) 100%); }
.pillar-graphic--red { background: linear-gradient(135deg, rgba(240,103,87,0.08) 0%, rgba(240,103,87,0.03) 100%); }
.pillar-graphic--pink { background: linear-gradient(135deg, rgba(91,163,208,0.08) 0%, rgba(91,163,208,0.03) 100%); }
.pillar-num-lg { position: absolute; top: 16px; right: 20px; font-size: 12px; font-weight: 700; color: var(--light-gray); letter-spacing: 1px; }
.pillar-card-lg h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.pillar-card-lg p { font-size: 16px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }
/* Old pillar grid (used on /focus page) */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; border: 1px solid transparent; }
.pillar-card:hover { transform: translateY(-4px); border-color: var(--light-gray); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.pillar-icon { width: 72px; height: 72px; border-radius: 18px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.pillar-card:nth-child(1) .pillar-icon { background: rgba(7,177,218,0.1); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(24,56,98,0.1); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(240,103,87,0.1); }
.pillar-card:nth-child(4) .pillar-icon { background: rgba(91,163,208,0.1); }
.pillar-card:nth-child(5) .pillar-icon { background: rgba(24,56,98,0.08); }
.pillar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.pillar-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }
.pillar-card .pillar-num { position: absolute; top: 12px; right: 16px; font-size: 11px; font-weight: 700; color: var(--light-gray); letter-spacing: 1px; }

/* ===== FOUNDERS ===== */
.founders { padding: 100px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.founders::before { content: '2026'; position: absolute; top: 50%; right: -2%; transform: translateY(-50%); font-size: 280px; font-weight: 900; color: rgba(255,255,255,0.02); letter-spacing: -10px; pointer-events: none; }
.founders-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.founders-content .kicker, .kicker { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.founders-content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.founders-content .subtitle { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.6; }
.deadline { display: inline-flex; align-items: center; gap: 10px; background: rgba(240,103,87,0.15); border: 1px solid rgba(240,103,87,0.3); padding: 10px 20px; border-radius: 60px; font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 32px; }
.founders-perks { display: flex; flex-direction: column; gap: 16px; }
.perk { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 20px; border: 1px solid rgba(255,255,255,0.06); }
.perk-check { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(7,177,218,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--cyan); margin-top: 2px; }
.perk h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.perk p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.5; }
.founders-banner { background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 48px; }
.founders-banner-content { max-width: 640px; }
.founders-banner-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.founders-banner-content p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 24px; }

/* ===== NEWS ===== */
.news, .news-section { padding: 100px 0; background: var(--white); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.news-header .section-title { margin-bottom: 0; }
.news-carousel, .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { border-radius: var(--radius); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; display: block; }
.news-card:hover { transform: translateY(-3px); border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.news-thumb { height: 180px; background: linear-gradient(135deg, var(--light-gray) 0%, var(--mid-gray) 100%); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.news-thumb .tag { position: absolute; top: 16px; left: 16px; background: var(--white); padding: 5px 12px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.news-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--mid-gray); font-weight: 500; margin-bottom: 8px; }
.news-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
.news-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

/* ===== PAGE HERO ===== */
.page-hero { margin-top: var(--header-h); padding: 80px 0 60px; background: var(--off-white); }
.page-hero--light { background: var(--off-white); }
.page-title { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.page-title .accent { color: var(--blue); }
.page-subtitle { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.65; max-width: 640px; }
.breadcrumb { font-size: 13px; color: var(--mid-gray); margin-bottom: 16px; display: inline-block; transition: color 0.2s; }
.breadcrumb:hover { color: var(--blue); }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; }
.content-main { line-height: 1.8; }
.content-main h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 20px; font-weight: 600; margin: 32px 0 12px; }
.content-main p { font-size: 16px; color: var(--dark-gray); margin-bottom: 16px; font-weight: 400; }
.content-main ul, .content-main ol { margin: 16px 0; padding-left: 24px; }
.content-main li { font-size: 16px; color: var(--dark-gray); margin-bottom: 8px; font-weight: 400; list-style: disc; }
.content-main img { border-radius: var(--radius); margin: 24px 0; }
.content-hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.content-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.sidebar-link { display: block; font-size: 14px; color: var(--dark-gray); padding: 6px 0; transition: color 0.2s; }
.sidebar-link:hover { color: var(--blue); }
.value-list { list-style: none; padding: 0; }
.value-list li { font-size: 14px; color: var(--dark-gray); padding: 8px 0; border-bottom: 1px solid var(--light-gray); line-height: 1.5; font-weight: 400; }
.value-list li:last-child { border-bottom: none; }
.value-list li strong { font-weight: 600; color: var(--black); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--blue); display: block; }
.stat-label { font-size: 12px; color: var(--mid-gray); font-weight: 400; }
.member-list { display: flex; flex-direction: column; gap: 8px; }
.member-list-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; transition: color 0.2s; }
.member-list-item:hover { color: var(--blue); }
.member-list-item img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.doc-list { display: flex; flex-direction: column; gap: 8px; }
.doc-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.doc-item:hover { background: var(--white); }
.doc-icon { font-size: 20px; }
.doc-name { font-size: 13px; font-weight: 500; }
.doc-meta { font-size: 11px; color: var(--mid-gray); }

/* ===== TEAM ===== */
.team-section { padding: 80px 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; background: var(--light-gray); background-size: cover; background-position: center; }
.team-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--mid-gray); }

/* ===== MEMBERSHIP ===== */
.membership-plans { padding: 80px 0; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card { background: var(--off-white); border-radius: var(--radius); padding: 32px; position: relative; border: 2px solid transparent; transition: all 0.3s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.plan-card--featured { border-color: var(--blue); background: var(--white); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); padding: 4px 16px; border-radius: 60px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.plan-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.plan-price { font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--mid-gray); }
.plan-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }
.directory-section { padding: 80px 0; background: var(--off-white); }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.directory-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; transition: all 0.3s; border: 1px solid transparent; }
.directory-card:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.directory-logo { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.directory-logo img { max-height: 48px; max-width: 120px; object-fit: contain; }
.directory-logo span { font-size: 28px; font-weight: 800; color: var(--light-gray); }
.directory-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.directory-cat { font-size: 11px; color: var(--mid-gray); }
.member-hero { display: flex; align-items: center; gap: 24px; }
.member-hero-logo { max-height: 60px; max-width: 200px; }

/* ===== WORKING GROUPS ===== */
.wg-section { padding: 80px 0; }
.wg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wg-card { border-radius: var(--radius); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; display: block; }
.wg-card:hover { border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.wg-thumb { height: 160px; background: linear-gradient(135deg, var(--light-gray), var(--mid-gray)); background-size: cover; background-position: center; }
.wg-body { padding: 24px; }
.wg-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wg-body p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }
.wg-members-preview { display: flex; align-items: center; gap: 4px; margin-top: 16px; }
.wg-member-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); object-fit: contain; background: var(--white); }
.wg-more { font-size: 12px; color: var(--mid-gray); margin-left: 4px; }

/* ===== WORKING GROUPS PAGE v2 ===== */
.wg-hero { margin-top: var(--header-h); position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; color: var(--white); overflow: hidden; }
.wg-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); z-index: 0; }
.wg-hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(7,177,218,0.06) 0%, transparent 60%); }
.wg-hero-content { position: relative; z-index: 1; padding: 80px 0; width: 100%; }
.wg-hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1.08; margin-bottom: 24px; }
.wg-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.55); font-weight: 400; line-height: 1.7; max-width: 640px; margin-bottom: 48px; }
.wg-hero-stats { display: flex; gap: 48px; }
.wg-hero-stat-num { font-size: 36px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 6px; }
.wg-hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.wg-principle { padding: 60px 0; background: var(--off-white); }
.wg-principle-inner { display: flex; align-items: flex-start; gap: 24px; max-width: 760px; padding: 32px 36px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); margin: 0 auto; }
.wg-principle-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: rgba(24,56,98,0.06); display: flex; align-items: center; justify-content: center; }
.wg-principle-inner h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wg-principle-inner p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }

.wg-listing { padding: 80px 0; background: var(--off-white); }
.wg-v2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.wg-v2-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; transition: transform 0.4s, box-shadow 0.4s; }
.wg-v2-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); }
.wg-v2-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; background-color: #2a2a30; filter: saturate(0.75) brightness(0.85); }
.wg-v2-card-img::before { content: ''; position: absolute; inset: 0; background: rgba(0, 20, 40, 0.2); z-index: 1; }
.wg-v2-card:hover .wg-v2-card-img { transform: scale(1.04); }
.wg-v2-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,16,20,0.97) 0%, rgba(16,16,20,0.7) 40%, rgba(16,16,20,0.2) 100%); transition: background 0.4s; }
.wg-v2-card:hover .wg-v2-card-overlay { background: linear-gradient(to top, rgba(16,16,20,0.98) 0%, rgba(16,16,20,0.6) 40%, rgba(16,16,20,0.15) 100%); }
.wg-v2-num { position: absolute; top: 20px; right: 24px; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.2); letter-spacing: 2px; z-index: 2; }
.wg-v2-card-body { position: relative; z-index: 2; padding: 36px 32px; color: var(--white); }
.wg-v2-card-body h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; line-height: 1.25; text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.wg-v2-card-body p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; font-weight: 400; margin-bottom: 16px; }
.wg-v2-companies { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; margin-bottom: 16px; font-weight: 400; }
.wg-v2-members { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.wg-v2-members img { width: 32px; height: 32px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.15); object-fit: contain; background: rgba(255,255,255,0.9); }
.wg-v2-members-more { font-size: 12px; color: rgba(255,255,255,0.4); margin-left: 4px; }
.wg-v2-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s; }
.wg-v2-card:hover .wg-v2-link { gap: 10px; }

.wg-upcoming { padding: 80px 0; }
.wg-upcoming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 700px; margin: 0 auto; }
.wg-upcoming-item { text-align: center; padding: 32px 24px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--light-gray); transition: all 0.3s; }
.wg-upcoming-item:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
.wg-upcoming-icon { font-size: 28px; margin-bottom: 12px; }
.wg-upcoming-item h4 { font-size: 15px; font-weight: 700; }

.wg-cta { padding: 80px 0; background: var(--dark); }
.wg-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; color: var(--white); }
.wg-cta-inner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 16px; }
.wg-cta-inner p { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 400; line-height: 1.65; margin-bottom: 32px; }

/* ===== WG DETAIL PAGE ===== */
.wgd-hero { margin-top: var(--header-h); position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.wgd-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(0.75) brightness(0.85); }
.wgd-hero-bg::before { content: ''; position: absolute; inset: 0; background: rgba(0, 20, 40, 0.2); z-index: 1; }
.wgd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,16,20,0.95) 0%, rgba(16,16,20,0.6) 40%, rgba(16,16,20,0.2) 100%); z-index: 1; }
.wgd-hero-content { position: relative; z-index: 2; padding: 60px 0 56px; width: 100%; }
.wgd-breadcrumb { display: inline-block; font-size: 13px; font-weight: 500; color: var(--cyan); text-decoration: none; margin-bottom: 20px; letter-spacing: 0.5px; transition: opacity 0.2s; }
.wgd-breadcrumb:hover { opacity: 0.7; }
.wgd-hero-title { font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.1; margin-bottom: 20px; max-width: 700px; }
.wgd-hero-desc { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.7; max-width: 640px; }

.wgd-members { padding: 48px 0; border-bottom: 1px solid var(--light-gray); }
.wgd-body { padding: 60px 0; }
.wgd-body-content { max-width: 760px; font-size: 16px; line-height: 1.75; color: var(--text); }
.wgd-body-content h2 { font-size: 24px; font-weight: 800; margin: 32px 0 16px; }
.wgd-body-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.wgd-body-content p { margin-bottom: 16px; }
.wgd-body-content ul, .wgd-body-content ol { margin-bottom: 16px; padding-left: 24px; }
.wgd-body-content li { margin-bottom: 8px; }
.wgd-members-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--mid-gray); margin-bottom: 24px; text-align: center; }
.wgd-members-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; }
.wgd-member-logo { display: flex; align-items: center; justify-content: center; height: 48px; opacity: 0.7; transition: opacity 0.3s; text-decoration: none; }
.wgd-member-logo:hover { opacity: 1; }
.wgd-member-logo img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s; }
.wgd-member-logo:hover img { filter: grayscale(0%); }
.wgd-member-logo--text { background: var(--off-white); border-radius: var(--radius); padding: 8px 16px; border: 1px solid var(--light-gray); }
.wgd-member-logo--text span { font-size: 13px; font-weight: 600; color: var(--dark-gray); white-space: nowrap; }

.wgd-goals { padding: 80px 0; }
.wgd-goals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.wgd-goal-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.wgd-goal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.wgd-goal-icon { font-size: 28px; margin-bottom: 16px; }
.wgd-goal-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.wgd-goal-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

.wgd-verticals { padding: 80px 0; background: var(--off-white); }
.wgd-verticals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.wgd-vertical-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--light-gray); position: relative; overflow: hidden; transition: all 0.3s; }
.wgd-vertical-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.wgd-vertical-num { position: absolute; top: 16px; right: 20px; font-size: 13px; font-weight: 800; color: var(--light-gray); letter-spacing: 2px; }
.wgd-vertical-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; padding-right: 40px; }
.wgd-vertical-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }

.wgd-people { padding: 80px 0; }
.wgd-people-placeholder,
.wgd-events-placeholder { text-align: center; padding: 48px 24px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); margin-top: 40px; }
.wgd-people-placeholder svg,
.wgd-events-placeholder svg { margin-bottom: 16px; }
.wgd-people-placeholder p,
.wgd-events-placeholder p { font-size: 15px; color: var(--dark-gray); font-weight: 400; max-width: 420px; margin: 0 auto; line-height: 1.6; }

.wgd-events { padding: 80px 0; background: var(--off-white); }

.wgd-cta { padding: 80px 0; background: var(--dark); }
.wgd-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; color: var(--white); }
.wgd-cta-inner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 16px; }
.wgd-cta-inner p { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 400; line-height: 1.65; margin-bottom: 32px; }

/* ===== EXPERT WORKING GROUPS — OVERVIEW V2 ===== */
.wg-intro { padding: 100px 0; background: var(--white); }
.wg-intro-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.wg-intro-text { position: sticky; top: 120px; }
.wg-intro-body p { font-size: 16px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; margin-bottom: 20px; }
.wg-intro-body p:last-child { margin-bottom: 0; }

/* Dark variant of intro/definition */
.wg-intro--dark { background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); color: var(--white); }
.wg-intro--dark .section-label { color: var(--cyan); }
.wg-intro--dark .section-title { color: var(--white); }
.wg-intro--dark .section-title .accent { color: var(--cyan); }
.wg-intro--dark .wg-intro-body p { color: rgba(255,255,255,0.75); }

.wg-pillars { padding: 100px 0; background: var(--off-white); }
.wg-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wg-pillar-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.wg-pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.wg-pillar-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.wg-pillar-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.wg-pillar-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; }

.wg-howwork { padding: 100px 0; background: var(--white); }
.wg-howwork-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wg-howwork-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--light-gray); position: relative; }
.wg-howwork-num { position: absolute; top: 24px; right: 24px; font-size: 13px; font-weight: 800; color: var(--mid-gray); letter-spacing: 2px; }
.wg-howwork-icon { font-size: 32px; margin-bottom: 16px; }
.wg-howwork-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 14px; }
.wg-howwork-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; margin-bottom: 12px; }
.wg-howwork-note { font-size: 13px !important; color: var(--mid-gray) !important; font-style: italic; padding-top: 12px; border-top: 1px solid var(--light-gray); margin-top: 14px !important; }

.wg-whojoin { padding: 80px 0; background: var(--off-white); }
.wg-whojoin-wrap { max-width: 860px; margin: 0 auto; }
.wg-whojoin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--light-gray); }
.wg-whojoin-table th { padding: 16px 24px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); background: var(--off-white); border-bottom: 2px solid var(--light-gray); }
.wg-whojoin-table td { padding: 18px 24px; border-bottom: 1px solid var(--light-gray); font-size: 15px; color: var(--dark-gray); vertical-align: top; }
.wg-whojoin-table tbody tr:last-child td { border-bottom: none; }
.wg-whojoin-table td:first-child { width: 40%; color: var(--black); }
.wg-whojoin-note { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; margin-top: 20px; text-align: center; }
.wg-whojoin-note a { color: var(--blue); text-decoration: underline; }

.wg-v2-badge { position: absolute; top: 20px; left: 24px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); background: rgba(7,177,218,0.25); border: 1px solid rgba(7,177,218,0.5); padding: 4px 10px; border-radius: 4px; z-index: 2; backdrop-filter: blur(4px); }
.wg-v2-focus { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; font-weight: 400; }

.wg-propose { display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 900px; margin: 56px auto 0; padding: 32px 36px; background: linear-gradient(135deg, var(--black) 0%, #2a2a32 100%); border-radius: var(--radius-lg); color: var(--white); }
.wg-propose-body { flex: 1; }
.wg-propose h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.wg-propose p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; font-weight: 400; }

.wg-closing { padding: 100px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); }
.wg-closing-inner { max-width: 720px; margin: 0 auto; text-align: center; color: var(--white); }
.wg-closing-inner h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; margin-bottom: 20px; line-height: 1.15; }
.wg-closing-inner p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 400; margin-bottom: 36px; }
.wg-closing-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== EXPERT WORKING GROUPS — DETAIL V2 ===== */
.wgd-hero-topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.wgd-hero-topbar .wgd-breadcrumb { margin-bottom: 0; }
.wgd-status-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); background: rgba(7,177,218,0.12); border: 1px solid rgba(7,177,218,0.35); padding: 5px 12px; border-radius: 4px; margin-bottom: 20px; }
.wgd-status-badge--red { color: var(--white); background: var(--red); border-color: var(--red); margin-bottom: 0; }
.wgd-hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); font-weight: 400; line-height: 1.55; max-width: 640px; font-style: italic; }

.wgd-intro { padding: 64px 0; background: var(--white); }
.wgd-intro-text { max-width: 760px; font-size: 17px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; }

.wgd-workon { padding: 100px 0; background: var(--off-white); }
.wgd-workon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.wgd-workon-col { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--light-gray); }
.wgd-workon-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.wgd-workon-col h3 { font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.wgd-workon-col ul { list-style: none; padding: 0; }
.wgd-workon-col li { font-size: 14px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; padding: 10px 0; padding-left: 20px; position: relative; border-bottom: 1px solid var(--light-gray); }
.wgd-workon-col li:last-child { border-bottom: none; }
.wgd-workon-col li::before { content: '→'; position: absolute; left: 0; top: 10px; color: var(--blue); font-weight: 600; }

.wgd-roadmap { padding: 100px 0; background: var(--white); }
.wgd-roadmap-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; position: relative; }
.wgd-roadmap-timeline::before { content: ''; position: absolute; top: 16px; left: 10%; right: 10%; height: 2px; background: var(--light-gray); z-index: 0; }
.wgd-roadmap-item { position: relative; padding: 0 16px; text-align: center; z-index: 1; }
.wgd-roadmap-marker { display: inline-block; background: var(--blue); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; position: relative; z-index: 2; }
.wgd-roadmap-item:first-child .wgd-roadmap-marker { background: var(--cyan); color: var(--black); }
.wgd-roadmap-item:last-child .wgd-roadmap-marker { background: var(--red); }
.wgd-roadmap-item h4 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.wgd-roadmap-item p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }
.wgd-roadmap-note { text-align: center; font-size: 13px; color: var(--mid-gray); font-style: italic; margin-top: 40px; }

.wgd-composition { padding: 100px 0; background: var(--off-white); }
.wgd-composition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.wgd-comp-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--light-gray); display: flex; flex-direction: column; }
.wgd-comp-icon { font-size: 28px; margin-bottom: 16px; }
.wgd-comp-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.wgd-comp-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 16px; flex: 1; }
.wgd-comp-members { font-size: 12px; color: var(--mid-gray); font-style: italic; padding-top: 12px; border-top: 1px solid var(--light-gray); line-height: 1.5; }

.wgd-leadership { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.wgd-leader-placeholder { display: flex; align-items: flex-start; gap: 20px; padding: 28px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); }
.wgd-leader-placeholder svg { flex-shrink: 0; }
.wgd-leader-placeholder p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin: 0; }
.wgd-leader-placeholder strong { color: var(--black); font-weight: 700; }

.wgd-closing { padding: 100px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); }
.wgd-closing-inner { max-width: 700px; margin: 0 auto; text-align: center; color: var(--white); }
.wgd-closing-inner h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 18px; line-height: 1.2; }
.wgd-closing-inner p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 400; margin-bottom: 32px; }
.wgd-closing-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== WG PAGE A — Why Now (Three Waves) ===== */
.wg-whynow { padding: 100px 0; background: var(--white); }
.wg-whynow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wg-wave-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; transition: all 0.3s; }
.wg-wave-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); border-color: rgba(7,177,218,0.3); }
.wg-wave-num { font-size: 13px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; margin-bottom: 12px; }
.wg-wave-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 14px; line-height: 1.3; color: var(--blue); }
.wg-wave-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; }

/* ===== WG PAGE A — Deliverables (Five outputs) ===== */
.wg-deliverables { padding: 100px 0; background: var(--off-white); }
.wg-deliv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.wg-deliv-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px 22px; display: flex; flex-direction: column; transition: all 0.3s; }
.wg-deliv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); border-color: rgba(24,56,98,0.2); }
.wg-deliv-num { display: inline-block; font-size: 12px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; margin-bottom: 12px; padding: 4px 10px; background: rgba(7,177,218,0.08); border-radius: 4px; align-self: flex-start; }
.wg-deliv-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; color: var(--black); }
.wg-deliv-card p { font-size: 13.5px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }
.wg-deliv-note { text-align: center; font-size: 15px; color: var(--mid-gray); line-height: 1.7; margin-top: 40px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* Dark variant of deliverables */
.wg-deliverables--dark { background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); color: var(--white); }
.wg-deliverables--dark .section-label { color: var(--cyan); }
.wg-deliverables--dark .section-title { color: var(--white); }
.wg-deliverables--dark .section-title .accent { color: var(--cyan); }
.wg-deliverables--dark .wg-deliv-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.wg-deliverables--dark .wg-deliv-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(7,177,218,0.4); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.wg-deliverables--dark .wg-deliv-num { background: rgba(7,177,218,0.18); color: var(--cyan); }
.wg-deliverables--dark .wg-deliv-card h4 { color: var(--white); }
.wg-deliverables--dark .wg-deliv-card p { color: rgba(255,255,255,0.65); }
.wg-deliverables--dark .wg-deliv-note { color: rgba(255,255,255,0.55); }

/* ===== WG PAGE A — Access Founding row ===== */
.wg-whojoin-table tr.wg-whojoin-founding td { background: linear-gradient(90deg, rgba(255,64,64,0.04) 0%, rgba(7,177,218,0.04) 100%); border-left: 3px solid var(--red); }
.wg-whojoin-deadline { display: inline-block; font-size: 12px; font-weight: 600; color: var(--red); margin-left: 6px; }
.wg-whojoin-note { text-align: center; font-size: 13px; color: var(--mid-gray); font-style: italic; margin-top: 20px; }

/* ===== WG DETAIL — Hero headline (tagline below gName) ===== */
.wgd-hero-headline { font-size: 22px; color: rgba(255,255,255,0.92); font-weight: 600; line-height: 1.35; max-width: 760px; margin: 0 0 18px 0; }

/* ===== WG DETAIL — Intro section heading ===== */
.wgd-intro .section-label { margin-bottom: 10px; }
.wgd-intro .section-title { margin-bottom: 28px; }

/* ===== WG DETAIL — Verticals section heading ===== */
.wgd-verticals { padding: 100px 0; background: var(--white); }
.wgd-verticals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.wgd-vertical-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 24px 20px; transition: all 0.3s; }
.wgd-vertical-card:hover { transform: translateY(-3px); border-color: rgba(7,177,218,0.3); box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.wgd-vertical-num { font-size: 12px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; margin-bottom: 14px; }
.wgd-vertical-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.wgd-vertical-card p { font-size: 13.5px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }
.wgd-verticals-cta { text-align: center; margin-top: 56px; }

/* Dark variant of Scope/Verticals — increased specificity so it can't be
   overridden by an earlier `.wgd-verticals` rule on the page. */
.wgd-verticals.wgd-verticals--dark { background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 50%, #1a1a1e 100%); color: var(--white); }
.wgd-verticals.wgd-verticals--dark .section-label { color: var(--cyan); }
.wgd-verticals.wgd-verticals--dark .section-title { color: var(--white); }
.wgd-verticals.wgd-verticals--dark .section-title .accent { color: var(--cyan); }
.wgd-verticals.wgd-verticals--dark .wgd-vertical-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.wgd-verticals.wgd-verticals--dark .wgd-vertical-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(7,177,218,0.4); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.wgd-verticals.wgd-verticals--dark .wgd-vertical-card .wgd-vertical-num { color: var(--cyan); }
.wgd-verticals.wgd-verticals--dark .wgd-vertical-card h3 { color: var(--white); }
.wgd-verticals.wgd-verticals--dark .wgd-vertical-card p { color: rgba(255,255,255,0.65); }

/* ===== WG DETAIL — Symmetric Value (two-column for both sides) ===== */
.wgd-symmetric { padding: 100px 0; background: var(--off-white); }
.wgd-symmetric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.wgd-symmetric-col { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px 36px; position: relative; }
.wgd-symmetric-col:first-child { border-top: 4px solid var(--blue); }
.wgd-symmetric-col:last-child { border-top: 4px solid var(--red); }
.wgd-symmetric-flag { font-size: 32px; line-height: 1; margin-bottom: 12px; }
.wgd-symmetric-col h3 { font-size: 19px; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.wgd-symmetric-col ul { list-style: none; padding: 0; margin: 0; }
.wgd-symmetric-col li { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; padding: 12px 0 12px 24px; position: relative; border-bottom: 1px solid var(--light-gray); }
.wgd-symmetric-col li:last-child { border-bottom: none; }
.wgd-symmetric-col li::before { content: '→'; position: absolute; left: 0; top: 12px; font-weight: 700; }
.wgd-symmetric-col:first-child li::before { color: var(--blue); }
.wgd-symmetric-col:last-child li::before { color: var(--red); }

/* ===== WG DETAIL — Founding Partners ===== */
.wgd-partners { padding: 100px 0; background: var(--white); }
.wgd-partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.wgd-partner-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; }
.wgd-partner-card:hover { transform: translateY(-3px); border-color: rgba(24,56,98,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.wgd-partner-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--light-gray); }
.wgd-partner-card h4 { font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0; flex: 1; }
.wgd-partner-country { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--cyan); white-space: nowrap; }
.wgd-partner-card p { font-size: 14px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin: 0; }
.wgd-partners-cta { text-align: center; margin-top: 48px; padding: 32px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px dashed var(--mid-gray); }
.wgd-partners-cta p { font-size: 16px; color: var(--dark-gray); margin-bottom: 18px; line-height: 1.6; }

/* ===== WG DETAIL — Leadership note ===== */
.wgd-leadership-note { font-size: 13px; color: var(--mid-gray); font-style: italic; text-align: center; margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ===== WG DETAIL — Why Now (prose section, off-white) ===== */
.wgd-whynow { padding: 96px 0; background: var(--off-white); }
.wgd-whynow .section-title { margin-bottom: 32px; max-width: 880px; }
.wgd-whynow-body { max-width: 760px; }
.wgd-whynow-body p { font-size: 16.5px; line-height: 1.75; color: var(--dark-gray); margin-bottom: 20px; font-weight: 400; }
.wgd-whynow-body p:last-child { margin-bottom: 0; font-weight: 500; color: var(--black); }

/* ===== WG DETAIL — Audience (centered intro + bullet list) ===== */
.wgd-audience { padding: 96px 0; background: var(--white); }
.wgd-audience .section-title { margin-bottom: 24px; max-width: 880px; }
.wgd-audience-intro { font-size: 16.5px; line-height: 1.7; color: var(--dark-gray); margin-bottom: 36px; max-width: 760px; font-weight: 400; }
.wgd-audience-list { list-style: none; padding: 0; margin: 0; max-width: 800px; display: grid; grid-template-columns: 1fr; gap: 0; }
.wgd-audience-list li { font-size: 16px; line-height: 1.6; color: var(--black); padding: 18px 0 18px 32px; position: relative; border-bottom: 1px solid var(--light-gray); font-weight: 500; }
.wgd-audience-list li:last-child { border-bottom: none; }
.wgd-audience-list li::before { content: ''; position: absolute; left: 0; top: 26px; width: 18px; height: 2px; background: var(--cyan); }

/* ===== WG DETAIL — Pull-quote (dark background, italic large quote) ===== */
.wgd-pullquote { padding: 88px 0; background: linear-gradient(135deg, #0F2447 0%, #1a1a1e 100%); color: var(--white); }
.wgd-pullquote blockquote { margin: 0; padding: 0; max-width: 880px; position: relative; }
.wgd-pullquote blockquote::before { content: '\201C'; display: block; font-family: Georgia, serif; font-size: 96px; line-height: 1; color: var(--cyan); margin-bottom: -28px; opacity: 0.85; }
.wgd-pullquote blockquote p { font-size: 26px; line-height: 1.5; font-weight: 500; font-style: italic; color: rgba(255,255,255,0.92); margin: 0; }

/* ===== Mobile responsiveness for new WG sections ===== */
@media (max-width: 1024px) {
  .wg-whynow-grid { grid-template-columns: repeat(3, 1fr); }
  .wg-deliv-grid { grid-template-columns: repeat(3, 1fr); }
  /* 5 verticals tiles: drop to 2 columns at tablet so each card is wide enough to breathe */
  .wgd-verticals-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .wgd-vertical-card { padding: 28px 24px; }
  .wgd-vertical-card h3 { font-size: 17px; }
  .wgd-vertical-card p { font-size: 14.5px; }
  .wgd-partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wg-whynow-grid { grid-template-columns: 1fr; }
  .wg-deliv-grid { grid-template-columns: 1fr; }
  .wgd-verticals-grid { grid-template-columns: 1fr; }
  .wgd-symmetric-grid { grid-template-columns: 1fr; }
  .wgd-partners-grid { grid-template-columns: 1fr; }
  .wgd-hero-headline { font-size: 18px; }
  .wgd-partner-header { flex-direction: column; gap: 4px; align-items: flex-start; }
  .wgd-whynow { padding: 64px 0; }
  .wgd-whynow-body p { font-size: 15.5px; line-height: 1.7; }
  .wgd-audience { padding: 64px 0; }
  .wgd-audience-list li { font-size: 15px; padding: 14px 0 14px 28px; }
  .wgd-audience-list li::before { top: 22px; }
  .wgd-pullquote { padding: 56px 0; }
  .wgd-pullquote blockquote::before { font-size: 64px; margin-bottom: -16px; }
  .wgd-pullquote blockquote p { font-size: 19px; line-height: 1.55; }
}

/* ===== INSIGHTS PAGES ===== */
.insight-hero { margin-top: var(--header-h); position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.insight-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(0.7) brightness(0.8); }
.insight-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,16,20,0.95) 0%, rgba(16,16,20,0.6) 50%, rgba(16,16,20,0.3) 100%); z-index: 1; }
.insight-hero-content { position: relative; z-index: 2; padding: 60px 0 56px; width: 100%; }
.insight-hero-title { font-size: clamp(36px, 5vw, 60px); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1.05; margin-bottom: 20px; }
.insight-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.7; max-width: 640px; }

.insight-stats { padding: 48px 0; background: var(--black); }
.insight-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.insight-stat-num { font-size: 32px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.insight-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }
.expo-stats-grid { grid-template-columns: repeat(5, 1fr); }

.insight-sectors { padding: 80px 0; }
.insight-sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-sector-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--light-gray); transition: all 0.3s; display: flex; flex-direction: column; }
.insight-sector-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.insight-sector-card--outline { background: var(--white); border-style: dashed; }
.insight-sector-icon { font-size: 32px; margin-bottom: 16px; }
.insight-sector-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.insight-sector-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin-bottom: 16px; flex: 1; }
.insight-sector-link { font-size: 13px; font-weight: 600; color: var(--blue); }
.insight-sector-card:hover .insight-sector-link { color: var(--cyan); }

.insight-culture { padding: 80px 0; background: var(--off-white); }
.insight-culture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.insight-culture-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.insight-culture-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.insight-culture-jp { font-size: 28px; font-weight: 700; color: var(--light-gray); margin-bottom: 8px; font-family: 'IBM Plex Sans JP', sans-serif; }
.insight-culture-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.insight-culture-card h4 { font-size: 14px; font-weight: 500; color: var(--blue); margin-bottom: 12px; }
.insight-culture-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }

.insight-relationships { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; }
.insight-relationships-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; filter: saturate(0.7) brightness(0.8); }
.insight-relationships-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,16,20,0.92) 0%, rgba(16,16,20,0.85) 40%, rgba(16,16,20,0.75) 100%); z-index: 1; }
.insight-relationships-content { max-width: 900px; }
.insight-relationships-content > p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 400; margin-bottom: 16px; max-width: 700px; }
.insight-relationships-content > p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.insight-rel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 40px 0; }
.insight-rel-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px 24px; }
.insight-rel-icon { font-size: 28px; margin-bottom: 12px; }
.insight-rel-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.insight-rel-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 400; }
.insight-rel-bottom { padding-top: 16px; }
.insight-rel-bottom p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.insight-rel-bottom p strong { color: var(--cyan); font-weight: 700; }

.insight-desk { padding: 80px 0; background: var(--black); color: var(--white); }
.insight-desk-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.insight-desk-text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.insight-desk-text > p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 400; margin-bottom: 12px; }
.insight-desk-text > p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.insight-desk-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.insight-desk-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.insight-desk-check { color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.insight-desk-visual { display: flex; flex-direction: column; gap: 20px; }
.insight-desk-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px 24px; }
.insight-desk-flag { font-size: 24px; margin-bottom: 12px; }
.insight-desk-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.insight-desk-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 400; }

/* Dark incentives (Why Czechia) */
.insight-incentives-dark { padding: 80px 0; background: var(--black); color: var(--white); }
.insight-incentives-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.insight-incentive-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.3s; }
.insight-incentive-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.insight-incentive-icon { font-size: 28px; margin-bottom: 12px; }
.insight-incentive-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.insight-incentive-card h4 { font-size: 13px; font-weight: 500; color: var(--cyan); margin-bottom: 12px; }
.insight-incentive-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; font-weight: 400; }

/* Light desk variant */
.insight-desk--light { background: var(--off-white); color: var(--black); }
.insight-desk--light .insight-desk-text h2 { color: var(--black); }
.insight-desk--light .insight-desk-text > p { color: var(--dark-gray); }
.insight-desk--light .insight-desk-text > p strong { color: var(--black); }
.insight-desk--light .insight-desk-item { color: var(--dark-gray); }
.insight-desk--light .insight-desk-check { color: var(--blue); }
.insight-desk--light .insight-desk-card { background: var(--white); border: 1px solid var(--light-gray); }
.insight-desk--light .insight-desk-card h4 { color: var(--black); }
.insight-desk--light .insight-desk-card p { color: var(--dark-gray); }

.insight-cost { padding: 80px 0; }
.insight-cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.insight-cost-alone, .insight-cost-hub { border-radius: var(--radius-lg); padding: 36px 32px; }
.insight-cost-alone { background: var(--off-white); border: 1px solid var(--light-gray); }
.insight-cost-alone h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; color: var(--dark-gray); }
.insight-cost-hub { background: var(--black); color: var(--white); }
.insight-cost-hub h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.insight-cost-items { display: flex; flex-direction: column; gap: 0; }
.insight-cost-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(128,128,128,0.15); gap: 16px; }
.insight-cost-item:last-child { border-bottom: none; }
.insight-cost-item--total { border-top: 2px solid var(--red); border-bottom: none; margin-top: 8px; padding-top: 16px; }
.insight-cost-item--total .insight-cost-name { font-weight: 700; }
.insight-cost-item--total .insight-cost-price { font-weight: 800; color: var(--red); font-size: 18px; }
.insight-cost-name { font-size: 14px; font-weight: 400; }
.insight-cost-alone .insight-cost-name { color: var(--dark-gray); }
.insight-cost-hub .insight-cost-name { color: rgba(255,255,255,0.6); }
.insight-cost-price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.insight-cost-alone .insight-cost-price { color: var(--black); }
.insight-cost-note { font-size: 13px; color: var(--mid-gray); margin-top: 16px; line-height: 1.5; font-style: italic; }

.insight-fairs { padding: 80px 0; background: var(--off-white); }
.insight-fairs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-fair { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.insight-fair:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.insight-fair-month { display: inline-block; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.insight-fair h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.insight-fair p { font-size: 15px; color: var(--dark-gray); line-height: 1.55; font-weight: 400; }

/* ===== LEGAL PAGES ===== */
.legal-content { padding: 60px 0 80px; }

/* ===== FAQ ACCORDION ===== */
.ms-faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item:first-child { border-top: 1px solid var(--light-gray); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--black); line-height: 1.4; }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--mid-gray); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--blue); }
.faq-item.open .faq-question { color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; }
.legal-body { max-width: 780px; margin: 0 auto; font-size: 15px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; }
.legal-body h2 { font-size: 22px; font-weight: 800; color: var(--black); margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--light-gray); }
.legal-body h2:first-of-type { border-top: none; margin-top: 32px; }
.legal-body h3 { font-size: 17px; font-weight: 700; color: var(--black); margin: 28px 0 10px; }
.legal-body p { margin-bottom: 16px; }
.legal-body strong { font-weight: 600; color: var(--black); }
.legal-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ===== EXPO PAVILION ===== */
.insight-pavilion { padding: 80px 0; }
.insight-pavilion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.insight-pavilion-img { border-radius: var(--radius-lg); background-size: cover; background-position: center; min-height: 400px; }
.insight-pavilion-text p { font-size: 15px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; margin-bottom: 16px; }
.insight-pavilion-awards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.insight-pavilion-award { display: flex; align-items: flex-start; gap: 12px; background: var(--off-white); border-radius: var(--radius); padding: 16px; border: 1px solid var(--light-gray); }
.insight-award-medal { font-size: 24px; flex-shrink: 0; }
.insight-pavilion-award strong { font-size: 14px; font-weight: 700; color: var(--black); }
.insight-pavilion-award div { font-size: 12px; color: var(--dark-gray); line-height: 1.5; }
.expo-tech-banner { display: none; }
.insight-pavilion-award--wide { grid-column: 1 / -1; justify-content: center; text-align: center; }

/* EXPO Gallery */
.expo-gallery { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 500px; }
.expo-gallery-track { position: relative; width: 100%; height: 100%; min-height: 500px; }
.expo-gallery-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.expo-gallery-slide.active { opacity: 1; }
.expo-gallery-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.expo-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.3s; }
.expo-dot.active { background: var(--white); }
.expo-dot:hover { background: rgba(255,255,255,0.7); }

/* EXPO Voices */
.expo-voices { padding: 80px 0; background: var(--off-white); }
.expo-voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expo-voice-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--light-gray); display: flex; flex-direction: column; }
.expo-voice-quote { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; font-style: italic; flex: 1; margin-bottom: 20px; }
.expo-voice-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.expo-voice-photo { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.expo-voice-author strong { font-size: 14px; font-weight: 700; color: var(--black); display: block; }
.expo-voice-author span { font-size: 12px; color: var(--mid-gray); }

/* ===== EVENTS ===== */
.events-section { padding: 80px 0; }
.events-section--past { background: var(--off-white); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-row { display: flex; gap: 24px; align-items: center; background: var(--off-white); border-radius: var(--radius); padding: 24px; transition: all 0.3s; border: 1px solid transparent; }
.event-row:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.event-date-block { text-align: center; min-width: 70px; }
.event-day { font-size: 28px; font-weight: 800; color: var(--blue); display: block; line-height: 1; }
.event-month { font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--dark-gray); }
.event-year { font-size: 11px; color: var(--mid-gray); }
.event-info { flex: 1; }
.event-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.event-info p { font-size: 15px; color: var(--dark-gray); font-weight: 400; margin-bottom: 8px; }
.event-meta { display: flex; gap: 12px; font-size: 13px; color: var(--mid-gray); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.pagination-info { font-size: 13px; color: var(--mid-gray); }

/* ===== FOOTER ===== */
.footer { background: var(--off-white); border-top: 1px solid var(--light-gray); }
.footer-partners { padding: 48px 0; border-bottom: 1px solid var(--light-gray); overflow: hidden; }
.partners-overflow { overflow: hidden; }
.partners-track { display: flex; gap: 48px; animation: scroll-logos 25s linear infinite; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo { min-width: 140px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: var(--radius-sm); padding: 12px 24px; border: 1px solid var(--light-gray); font-size: 13px; font-weight: 600; color: var(--mid-gray); letter-spacing: 0.5px; white-space: nowrap; }
.partner-logo img { max-height: 32px; max-width: 120px; object-fit: contain; }
.footer-newsletter { padding: 56px 0; border-bottom: 1px solid var(--light-gray); text-align: center; }
.footer-newsletter h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.footer-newsletter p { font-size: 15px; color: var(--dark-gray); font-weight: 400; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--light-gray); border-radius: 60px; font-family: var(--font-display); font-size: 14px; background: var(--white); outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form button { padding: 14px 28px; background: var(--black); color: var(--white); border-radius: 60px; font-size: 13px; font-weight: 600; transition: background 0.3s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--blue); }
.footer-bottom { padding: 48px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; max-width: 280px; margin-top: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; background: var(--white); border: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--blue); color: var(--blue); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--dark-gray); font-weight: 400; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--light-gray); font-size: 12px; color: var(--mid-gray); font-weight: 400; }

/* ===== ARTICLE PAGE ===== */
.article-header { margin-top: var(--header-h); padding: 60px 0 40px; background: var(--off-white); }
.article-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.8px; margin-bottom: 16px; max-width: 860px; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--mid-gray); }
.article-category { background: var(--red); color: var(--white); padding: 4px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.article-date { font-weight: 400; }
.article-author { font-weight: 500; color: var(--dark-gray); }
.article-meta span + span::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--mid-gray); margin-right: 16px; vertical-align: middle; }
.article-meta .article-category + span::before { display: none; }

.article-content { padding: 48px 0 80px; }
.article-body { max-width: 860px; }

/* Excerpt */
.article-excerpt { font-size: 20px; font-weight: 600; line-height: 1.6; color: var(--black); margin-bottom: 36px; }

/* Cover figure */
/* Cover figure */
.article-figure { margin: 0 0 36px; }
.article-figure--cover { margin-bottom: 40px; }
.article-figure--wide { margin-left: -5%; margin-right: -5%; width: 110%; }
.article-figure-img { width: 100%; border-radius: var(--radius); display: block; margin: 0; padding: 0; }
.article-figcaption { display: flex; flex-direction: column; gap: 2px; padding: 6px 4px 8px; font-size: 13px; line-height: 1.5; border-bottom: 1px solid var(--light-gray); }
.figcaption-text { display: block; font-weight: 400; color: var(--dark-gray); font-size: 14px; }
.figcaption-copyright { display: block; font-weight: 400; font-style: italic; font-size: 12px; color: var(--mid-gray); }

/* Body text */
.article-text { font-size: 17px; line-height: 1.85; color: var(--dark-gray); font-weight: 400; }
.article-text h2 { font-size: 24px; font-weight: 700; color: var(--black); margin: 48px 0 16px; }
.article-text h3 { font-size: 20px; font-weight: 600; color: var(--black); margin: 36px 0 12px; }
.article-text p { margin-bottom: 20px; }
.article-text strong { font-weight: 600; color: var(--black); }
.article-text em { font-style: italic; }
.article-text a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-text a:hover { color: var(--black); }
.article-text ul, .article-text ol { margin: 20px 0; padding-left: 24px; }
.article-text li { margin-bottom: 10px; }
.article-text blockquote { border-left: 4px solid var(--blue); margin: 32px 0; padding: 16px 24px; background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--dark-gray); }
/* Images inserted in WYSIWYG body */
.article-text figure.article-figure { margin: 36px 0; }
.article-text figure.article-figure .article-figure-img { margin: 0; padding: 0; }
.article-text figure:not(.article-figure) { margin: 36px 0; }
.article-text figure:not(.article-figure) img { width: 100%; border-radius: var(--radius); display: block; }
.article-text figcaption:not(.article-figcaption) { padding: 6px 4px 8px; font-size: 14px; color: var(--dark-gray); border-bottom: 1px solid var(--light-gray); }
.article-text img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; }

/* Gallery — horizontal scroll */
.article-gallery { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--light-gray); }
.article-gallery h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.gallery-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
.gallery-thumb { flex: 0 0 auto; width: 280px; cursor: pointer; scroll-snap-align: start; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; display: block; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-caption { padding: 8px 4px; font-size: 12px; color: var(--mid-gray); line-height: 1.4; }

/* Share bar */
.article-share { display: flex; align-items: center; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--light-gray); }
.article-share-label { font-size: 13px; font-weight: 600; color: var(--dark-gray); text-transform: uppercase; letter-spacing: 1px; }
.article-share-links { display: flex; gap: 8px; }
.share-btn { padding: 8px 16px; border-radius: 60px; font-size: 13px; font-weight: 500; border: 1px solid var(--light-gray); color: var(--dark-gray); transition: all 0.2s; }
.share-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Copyright */
.article-copyright { margin-top: 32px; font-size: 12px; color: var(--mid-gray); font-style: italic; line-height: 1.5; }

/* Republished notice */
.article-source { margin-top: 32px; padding: 16px 20px; background: var(--off-white); border-radius: var(--radius-sm); font-size: 14px; color: var(--dark-gray); line-height: 1.6; }
.article-source a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.article-source a:hover { color: var(--black); }

/* Style for images inserted via WYSIWYG editor */
.content-main figure { margin: 32px 0; }
.content-main figure img { width: 100%; border-radius: var(--radius); }
.content-main figcaption { padding: 10px 4px; font-size: 13px; color: var(--mid-gray); border-bottom: 1px solid var(--light-gray); }

/* ===== ARTICLE GALLERY ===== */
.article-gallery { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--light-gray); }
.article-gallery h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-thumb { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-more-overlay { position: absolute; inset: 0; background: rgba(26,26,30,0.6); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); }
.lightbox.open { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 36px; background: none; border: none; cursor: pointer; z-index: 10; padding: 8px; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 48px; background: none; border: none; cursor: pointer; z-index: 10; padding: 16px; opacity: 0.5; transition: opacity 0.2s; line-height: 1; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-content { max-width: 90vw; max-height: 80vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 4px; }
.lightbox-caption { color: rgba(255,255,255,0.7); margin-top: 16px; text-align: center; max-width: 700px; line-height: 1.5; display: flex; flex-direction: column; gap: 8px; }
.lightbox-caption-text { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.85); }
.lightbox-caption-copyright { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.45); font-style: italic; }
.lightbox-counter { position: absolute; bottom: 24px; color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 500; letter-spacing: 1px; }

/* ===== ABOUT PAGE ===== */
.about-hero { margin-top: var(--header-h); position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.about-hero--tall { min-height: calc(100vh - var(--header-h)); }
.about-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; z-index: 0; }
.about-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,30,0.7) 0%, rgba(26,26,30,0.8) 50%, rgba(26,26,30,0.95) 100%); }
.about-hero-content { position: relative; z-index: 1; padding: 80px 0; width: 100%; }
.about-hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1.08; margin-bottom: 24px; }
.about-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.7; max-width: 640px; margin: 0 auto 36px; }
.about-hero-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 48px auto 0; }
.about-hero-pillar { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.about-hero-pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 20px; }
.about-hero-pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.about-hero-pillar p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* Pillar tiles with photos */
.about-pillars { padding: 100px 0; background: var(--white); }
.about-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.about-pillars-grid--two { grid-template-columns: repeat(2, 1fr); }
.about-pillar-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.4s; text-decoration: none; }
.about-pillar-tile:hover { transform: translateY(-4px); }
.about-pillar-tile-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
.about-pillar-tile:hover .about-pillar-tile-bg { transform: scale(1.05); }
.about-pillar-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,30,0.97) 0%, rgba(26,26,30,0.6) 45%, rgba(26,26,30,0.15) 100%); }
.about-pillar-tile-content { position: relative; z-index: 1; padding: 32px 28px; color: var(--white); }
.about-pillar-tile-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; line-height: 1.25; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.about-pillar-tile-content p { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.6; font-weight: 400; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }

/* Origin with photo background */
.about-origin-hero { position: relative; padding: 100px 0; overflow: hidden; }
.about-origin-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; z-index: 0; }
.about-origin-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,30,0.93) 0%, rgba(26,26,30,0.88) 50%, rgba(10,22,40,0.92) 100%); z-index: 0; }
.about-origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-origin-text h2 { margin-bottom: 24px; }
.about-origin-text p { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.8; font-weight: 400; margin-bottom: 16px; }
.about-origin-text strong { font-weight: 600; color: var(--white); }
.about-timeline { display: flex; flex-direction: column; position: relative; padding-left: 32px; }
.about-timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: rgba(255,255,255,0.15); }
.about-tl-item { position: relative; padding: 16px 0 16px 24px; }
.about-tl-dot { position: absolute; left: -25px; top: 22px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--cyan); background: transparent; z-index: 1; }
.about-tl-dot--active { background: var(--cyan); }
.about-tl-year { font-size: 13px; font-weight: 700; color: var(--cyan); margin-bottom: 4px; }
.about-tl-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; font-weight: 400; }

/* Leadership */
.about-leadership { padding: 100px 0; background: var(--off-white); }
.about-leader-group { margin-bottom: 48px; }
.about-leader-group-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--light-gray); }
.about-leader-president { display: grid; grid-template-columns: 280px 1fr; gap: 40px; background: var(--white); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 48px; border: 1px solid var(--light-gray); }
.about-leader-president-photo { width: 100%; aspect-ratio: 3/4; background: #e0e0e0; background-size: cover; background-position: center; border-radius: var(--radius); }
.about-leader-president-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.about-leader-president-info .leader-role { font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 4px; }
.about-leader-president-info .leader-company { font-size: 13px; color: var(--mid-gray); margin-bottom: 16px; }
.about-leader-president-info .leader-bio { font-size: 15px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; }
.about-leaders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-leader-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--light-gray); cursor: pointer; transition: all 0.3s; }
.about-leader-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.about-leader-card-photo { width: 100%; aspect-ratio: 1; background: #e0e0e0; background-size: cover; background-position: center top; position: relative; }
.about-leader-card-photo .leader-expand { position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; transition: opacity 0.3s; }
.about-leader-card:hover .leader-expand { opacity: 1; }
.about-leader-card-body { padding: 14px 16px; }
.about-leader-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }

/* Leader popup */
.leader-popup-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.leader-popup-overlay.open { display: flex; }
.leader-popup { background: var(--white); border-radius: var(--radius-lg); max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; animation: popupSlideUp 0.4s ease; }
.leader-popup-close { position: absolute; top: 16px; right: 16px; background: var(--off-white); border: none; color: var(--dark-gray); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 1; }
.leader-popup-header { display: flex; gap: 24px; padding: 32px 32px 0; align-items: center; }
.leader-popup-photo { width: 100px; height: 100px; min-width: 100px; border-radius: 50%; background: #e0e0e0; background-size: cover; background-position: center; }
.leader-popup-name h3 { font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.leader-popup-name .leader-role { font-size: 14px; color: var(--blue); font-weight: 600; }
.leader-popup-name .leader-company { font-size: 13px; color: var(--mid-gray); }
.leader-popup-name .leader-links { margin-top: 10px; }
.leader-popup-bio { padding: 24px 32px 32px; font-size: 15px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; }
.leader-popup-bio p { margin-bottom: 12px; }
.leader-links { display: flex; gap: 10px; margin-top: 16px; }
.leader-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--blue); font-weight: 500; }
.leader-link:hover { text-decoration: underline; }

/* Testimonials */
.about-testimonials { padding: 100px 0; background: var(--white); }
.about-testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.about-testimonial-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; }
.about-testimonial-quote { font-size: 16px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; font-style: italic; margin-bottom: 24px; padding-left: 20px; border-left: 3px solid var(--blue); }
.about-testimonial-author { display: flex; gap: 16px; align-items: center; }
.about-testimonial-photo { width: 56px; height: 56px; border-radius: 50%; background: #e0e0e0; background-size: cover; background-position: center; }
.about-testimonial-name { font-size: 15px; font-weight: 700; }
.about-testimonial-title { font-size: 12px; color: var(--mid-gray); line-height: 1.4; }

/* Mission / Vision */
.about-mission { padding: 100px 0; background: var(--off-white); }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.about-mission-block h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.about-mission-block p { font-size: 15px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; }

/* Dual Structure */
.about-structure { padding: 100px 0; background: var(--white); }
.about-structure-diagram { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; align-items: center; max-width: 800px; margin: 40px auto 0; }
.about-structure-entity { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px; text-align: center; border: 1px solid var(--light-gray); }
.about-structure-entity h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.about-entity-type { font-size: 12px; color: var(--mid-gray); margin-bottom: 12px; }
.about-entity-flag { font-size: 36px; margin-bottom: 12px; }
.about-structure-entity ul { list-style: none; text-align: left; font-size: 13px; color: var(--dark-gray); }
.about-structure-entity li { padding: 6px 0; border-bottom: 1px solid var(--light-gray); }
.about-structure-entity li:last-child { border: none; }
.about-structure-bridge { text-align: center; font-size: 32px; color: var(--blue); font-weight: 800; }

/* Values v2 */
.about-values-v2 { padding: 80px 0; background: var(--off-white); }
.about-values-v2-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.about-value-v2 { background: var(--white); border-radius: var(--radius); padding: 28px 20px; border: 1px solid var(--light-gray); text-align: center; transition: all 0.3s; }
.about-value-v2:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.about-value-v2-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.about-value-v2 h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.about-value-v2 p { font-size: 12px; color: var(--mid-gray); line-height: 1.55; }

/* CTA */
.about-cta { padding: 100px 0; background: var(--black); color: var(--white); }
.about-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.about-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-cta-left p { font-size: 17px; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 28px; line-height: 1.7; }
.about-cta-right { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px; }
.about-cta-right h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.about-cta-right p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 20px; line-height: 1.6; }
.about-nl-form { display: flex; gap: 8px; }
.about-nl-form input[type="email"] { flex: 1; padding: 14px 20px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-display); font-size: 14px; outline: none; }
.about-nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.about-nl-form input[type="email"]:focus { border-color: var(--cyan); }
.about-nl-form button { padding: 14px 24px; border-radius: 60px; background: var(--white); color: var(--black); font-family: var(--font-display); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.about-nl-form button:hover { background: var(--cyan); color: var(--black); }

/* ===== GLOBAL CTA + NEWSLETTER ===== */
.global-cta { padding: 100px 0; background: var(--black); color: var(--white); }
.global-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.global-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.global-cta-left p { font-size: 17px; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 28px; line-height: 1.7; }
.global-cta-right { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px; }
.global-cta-right h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.global-cta-right p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 400; margin-bottom: 20px; line-height: 1.6; }
.global-nl-form { display: flex; gap: 8px; }
.global-nl-form input[type="email"] { flex: 1; padding: 14px 20px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-display); font-size: 14px; outline: none; }
.global-nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.global-nl-form input[type="email"]:focus { border-color: var(--cyan); }
.global-nl-form button { padding: 14px 24px; border-radius: 60px; background: var(--white); color: var(--black); font-family: var(--font-display); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.global-nl-form button:hover { background: var(--cyan); color: var(--black); }

/* ===== EVENTS PAGE ===== */
.upcoming-events { padding: 80px 0; background: var(--white); }
.upcoming-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.upcoming-header .section-title { margin-bottom: 0; }
.upcoming-grid { display: flex; flex-direction: column; gap: 24px; }

/* Event type badges */
.event-type { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 60px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.event-type--cjh { background: var(--black); color: var(--white); }
.event-type--networking { background: var(--blue); color: var(--white); }
.event-type--community { background: rgba(255,255,255,0.85); color: var(--blue); backdrop-filter: blur(4px); }
.event-type--culture { background: rgba(255,255,255,0.92); color: var(--pink); backdrop-filter: blur(4px); }
.event-type--industry { background: rgba(255,255,255,0.85); color: var(--dark-gray); backdrop-filter: blur(4px); }

/* Large card (featured CJH events) */
.event-card-lg { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white); transition: all 0.4s; border: 1px solid transparent; }
.event-card-lg:hover { border-color: var(--light-gray); box-shadow: 0 20px 48px rgba(0,0,0,0.08); transform: translateY(-3px); }
.event-card-lg-img { min-height: 340px; background-size: cover; background-position: center; position: relative; }
.event-card-lg-img .event-type { position: absolute; top: 20px; left: 20px; }
.event-card-lg-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.event-date-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--light-gray); padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; align-self: flex-start; }
.event-date-badge .edb-day { font-size: 24px; font-weight: 800; color: var(--blue); line-height: 1; letter-spacing: -0.5px; white-space: nowrap; }
.event-date-badge .edb-meta { display: flex; flex-direction: column; font-size: 11px; line-height: 1.3; }
.event-date-badge .edb-month { font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.event-date-badge .edb-year { font-weight: 400; color: var(--mid-gray); }
.event-date-badge--range .edb-day { font-size: 22px; }
.event-date-badge--range-wide { gap: 12px; padding: 10px 18px; }
.event-date-badge--range-wide .edb-side { display: flex; align-items: center; gap: 8px; }
.event-date-badge--range-wide .edb-day { font-size: 20px; }
.event-date-badge--range-wide .edb-dash { color: var(--mid-gray); font-weight: 400; font-size: 18px; }
.event-card-lg-body h3 { font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.event-card-lg-body p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin-bottom: 20px; }
.event-card-lg-meta { display: flex; gap: 16px; font-size: 13px; color: var(--mid-gray); margin-bottom: 24px; flex-wrap: wrap; }
.event-card-lg-meta span { display: flex; align-items: center; gap: 6px; }

/* Compact card (regular upcoming events — vertical stack in grid) */
.upcoming-regular-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card-compact { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; }
.event-card-compact:hover { border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.event-card-compact-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; position: relative; }
.event-card-compact-img .event-type { position: absolute; top: 14px; left: 14px; }
.event-card-compact-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.event-card-compact-date { font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.6px; }
.event-card-compact-body h3 { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--black); margin: 0; flex: 1; }
.event-card-compact-venue { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--mid-gray); margin-top: 4px; }
.event-card-compact-venue svg { flex-shrink: 0; }
.event-external-indicator { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--dark-gray); display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.event-recommended { position: absolute; bottom: 14px; left: 14px; background: var(--red); color: var(--white); padding: 4px 10px; border-radius: 60px; font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }

/* Legacy medium card — kept for backward compatibility, no longer used in events.ejs */
.event-card-md { display: grid; grid-template-columns: 240px 1fr; border-radius: var(--radius); overflow: hidden; background: var(--off-white); transition: all 0.3s; border: 1px solid transparent; }
.event-card-md:hover { border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.event-card-md-img { aspect-ratio: 1 / 1; min-height: 240px; background-size: cover; background-position: center; position: relative; }
.event-card-md-img .event-type { position: absolute; top: 14px; left: 14px; }
.event-card-md-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.event-card-md-body h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.event-card-md-body p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 12px; }
.event-card-md-date { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.event-card-md-organizer { font-size: 12px; color: var(--mid-gray); margin-bottom: 8px; }
.event-card-md-organizer strong { color: var(--dark-gray); font-weight: 600; }
.event-card-md-meta { display: flex; gap: 14px; font-size: 12px; color: var(--mid-gray); margin-bottom: 16px; flex-wrap: wrap; }
.event-card-md-meta span { display: flex; align-items: center; gap: 5px; }

/* Past events */
.past-events { padding: 80px 0; background: var(--off-white); }
.past-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.past-header .section-title { margin-bottom: 0; }
.past-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card-sm { border-radius: var(--radius); overflow: hidden; background: var(--white); transition: all 0.3s; border: 1px solid transparent; display: flex; flex-direction: column; }
.event-card-sm:hover { border-color: var(--light-gray); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.event-card-sm-img { aspect-ratio: 1 / 1; background-size: cover; background-position: center; position: relative; }
.event-card-sm-img .event-type { position: absolute; top: 12px; left: 12px; }
.event-gallery-badge { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 10px; border-radius: 60px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.event-card-sm-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.event-card-sm-date { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.event-card-sm-body h3 { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.event-card-sm-body p { font-size: 15px; color: var(--dark-gray); line-height: 1.55; font-weight: 400; margin-bottom: 12px; flex: 1; }
.event-card-sm-meta { display: flex; gap: 12px; font-size: 12px; color: var(--mid-gray); }
.upcoming-empty { padding: 60px; text-align: center; background: var(--off-white); border-radius: var(--radius-lg); border: 2px dashed var(--light-gray); }
.upcoming-empty h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--dark-gray); }
.upcoming-empty p { font-size: 15px; color: var(--mid-gray); font-weight: 400; margin-bottom: 24px; }
.load-more { text-align: center; margin-top: 48px; }

/* EVENT DETAIL */
.event-detail-hero { margin-top: var(--header-h); position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.event-detail-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,30,0.92) 0%, rgba(26,26,30,0.65) 45%, rgba(26,26,30,0.25) 100%); }
.event-detail-hero-inner { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; padding: 56px 32px; color: var(--white); width: 100%; }
.event-detail-hero-inner .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: inline-block; }
.event-detail-hero-inner .breadcrumb:hover { color: var(--white); }
.event-detail-hero-inner h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 16px; max-width: 700px; }
.event-detail-meta { display: flex; gap: 20px; font-size: 14px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.event-detail-meta span { display: flex; align-items: center; gap: 6px; }

.event-detail { padding: 60px 0 80px; }
.event-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; }
.event-detail-body { font-size: 17px; line-height: 1.85; color: var(--dark-gray); font-weight: 400; }
.event-detail-body h2 { font-size: 24px; font-weight: 700; color: var(--black); margin: 40px 0 16px; }
.event-detail-body h2:first-child { margin-top: 0; }
.event-detail-body p { margin-bottom: 20px; }
.event-detail-body strong { font-weight: 600; color: var(--black); }
.event-detail-body ul, .event-detail-body ol { margin: 0 0 20px 24px; }
.event-detail-body li { margin-bottom: 8px; }
.event-detail-body ul li { list-style: disc; }
.event-detail-body ol li { list-style: decimal; }
.event-detail-body blockquote { border-left: 3px solid var(--blue); padding: 8px 0 8px 20px; margin: 20px 0; font-style: italic; color: var(--dark-gray); }

/* Speakers */
.speakers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.speaker-card { display: flex; gap: 16px; padding: 16px; background: var(--off-white); border-radius: var(--radius-sm); }
.speaker-photo { width: 72px; height: 72px; min-width: 72px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--light-gray); }
.speaker-photo--empty { display: flex; align-items: center; justify-content: center; }
.speaker-info { display: flex; flex-direction: column; justify-content: center; }
.speaker-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.speaker-role { font-size: 13px; color: var(--dark-gray); }
.speaker-company { font-size: 12px; color: var(--mid-gray); }
.speaker-linkedin { font-size: 12px; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.speaker-linkedin:hover { text-decoration: underline; }

/* Event gallery scroll */
.event-gallery-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin-bottom: 32px; }
.event-gallery-scroll::-webkit-scrollbar { height: 6px; }
.event-gallery-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 3px; }
.event-gallery-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
.event-gallery-thumb { flex: 0 0 280px; cursor: pointer; scroll-snap-align: start; border-radius: var(--radius-sm); overflow: hidden; }
.event-gallery-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; display: block; }
.event-gallery-thumb:hover img { transform: scale(1.05); }
.event-gallery-caption { padding: 8px 4px; font-size: 12px; color: var(--mid-gray); line-height: 1.4; }

/* Event map */
.event-map { margin-bottom: 8px; }

/* Venue showcase — hero photo + thumbnail strip */
.venue-showcase { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.venue-photo-main { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 16 / 9; background: var(--off-white); }
.venue-photo-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.venue-photo-main:hover img { transform: scale(1.03); }
.venue-photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 28px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); color: var(--white); display: flex; flex-direction: column; gap: 4px; }
.venue-photo-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.7; }
.venue-photo-name { font-size: 20px; font-weight: 700; letter-spacing: -0.2px; }
.venue-photo-strip { display: grid; gap: 12px; }
.venue-photo-strip--count-1 { grid-template-columns: 1fr; max-width: 50%; }
.venue-photo-strip--count-2 { grid-template-columns: repeat(2, 1fr); }
.venue-photo-strip--count-3 { grid-template-columns: repeat(3, 1fr); }
.venue-photo-strip--count-4 { grid-template-columns: repeat(4, 1fr); }
.venue-photo-thumb { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 3 / 2; background: var(--off-white); }
.venue-photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.venue-photo-thumb:hover img { transform: scale(1.06); }
.venue-photo-more { position: absolute; inset: 0; background: rgba(0,0,0,0.55); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; letter-spacing: 0.3px; backdrop-filter: blur(2px); }

/* Sidebar */
.event-sidebar { display: flex; flex-direction: column; gap: 24px; }
.event-sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; }
.event-sidebar-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); }
.event-reg-card { background: var(--black); border-radius: var(--radius); padding: 32px; color: var(--white); }
.event-reg-price { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.event-reg-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
.event-reg-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.event-info-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 14px; align-items: flex-start; }
.event-info-row:last-child { border-bottom: none; }
.event-info-icon { color: var(--blue); min-width: 20px; margin-top: 2px; }
.event-info-label { color: var(--mid-gray); font-size: 12px; }
.event-info-value { font-weight: 500; color: var(--black); }
.event-info-sub { font-size: 12px; color: var(--mid-gray); font-weight: 400; margin-top: 4px; line-height: 1.5; }

/* Deadline urgency banner */
.event-deadline-banner { padding: 14px 0; font-size: 14px; }
.event-deadline-banner .container { display: flex; align-items: center; justify-content: center; gap: 10px; }
.event-deadline-banner--info { background: linear-gradient(90deg, rgba(0,102,255,0.08) 0%, rgba(0,212,255,0.06) 100%); color: var(--blue); border-bottom: 1px solid rgba(0,102,255,0.12); }
.event-deadline-banner--warning { background: linear-gradient(90deg, rgba(255,179,0,0.12) 0%, rgba(255,179,0,0.06) 100%); color: #b87900; border-bottom: 1px solid rgba(255,179,0,0.2); }
.event-deadline-banner--critical { background: linear-gradient(90deg, rgba(255,64,64,0.12) 0%, rgba(255,64,64,0.06) 100%); color: var(--red); border-bottom: 1px solid rgba(255,64,64,0.2); }
.event-deadline-banner--closed { background: var(--off-white); color: var(--mid-gray); border-bottom: 1px solid var(--light-gray); }
.event-deadline-banner strong { font-weight: 700; }

/* Event Brief — quick-scan stat cards */
.event-brief { padding: 40px 0; background: var(--off-white); border-bottom: 1px solid var(--light-gray); }
.event-brief-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.event-brief-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; border: 1px solid transparent; transition: all 0.3s; position: relative; }
.event-brief-card:hover { border-color: var(--light-gray); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
.event-brief-icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,212,255,0.08) 100%); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.event-brief-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--mid-gray); margin-bottom: 8px; }
.event-brief-value { font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.35; }
.event-brief-value > div { margin-top: 2px; }
.event-brief-value > div:first-child { margin-top: 0; }
.event-brief-sub { font-size: 12.5px; font-weight: 400; color: var(--mid-gray); margin-top: 6px; line-height: 1.45; }

/* Co-hosts showcase */
.event-cohosts-section { margin: 48px 0 32px; padding: 40px; background: linear-gradient(135deg, var(--off-white) 0%, #f3f3f6 100%); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); }
.event-cohosts-section h2 { font-size: 22px; font-weight: 700; color: var(--black); margin: 0 0 8px; }
.event-cohosts-intro { font-size: 14.5px; color: var(--mid-gray); margin-bottom: 28px; max-width: 620px; line-height: 1.6; }
.event-cohosts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.event-cohost-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-sm); padding: 22px 14px 16px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 14px; min-height: 200px; transition: all 0.25s; text-align: center; }
.event-cohost-card:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.event-cohost-logo { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.event-cohost-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: all 0.25s; }
.event-cohost-name { font-size: 11.5px; font-weight: 600; color: var(--dark-gray); line-height: 1.4; margin-top: auto; padding-top: 6px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Supporters — smaller, more muted */
.event-supporters-section { margin: 32px 0; padding: 28px 32px; background: var(--off-white); border-radius: var(--radius); }
.event-supporters-section h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); margin: 0 0 18px; }
.event-supporters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.event-supporter-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-sm); padding: 14px 10px 12px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; min-height: 140px; transition: all 0.2s; text-align: center; }
.event-supporter-card:hover { border-color: var(--mid-gray); }
.event-supporter-logo { width: 100%; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.event-supporter-logo img { max-width: 100%; max-height: 100%; object-fit: contain; transition: all 0.2s; }
.event-supporter-name { font-size: 10px; font-weight: 500; color: var(--mid-gray); text-align: center; line-height: 1.4; margin-top: auto; padding-top: 4px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Chambers slate — official event artwork featuring all participating chambers */
.event-promo-banner { margin: 40px 0 32px; padding: 24px; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius); }
.event-promo-banner-img { width: 100%; border-radius: var(--radius-sm); overflow: hidden; background: var(--off-white); }
.event-promo-banner-img img { display: block; width: 100%; height: auto; }
.event-promo-banner-caption { font-size: 12px; color: var(--mid-gray); text-align: center; font-style: italic; margin: 14px 0 0; letter-spacing: 0.3px; }

/* Getting There — transport list */
.event-transport { background: var(--off-white); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 32px; }
.event-transport-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 14.5px; color: var(--dark-gray); border-bottom: 1px solid rgba(0,0,0,0.04); }
.event-transport-row:last-child { border-bottom: none; }
.event-transport-row svg { flex-shrink: 0; }

/* Important notes / cancellation policy box */
.event-policy-box { display: flex; gap: 14px; padding: 18px 22px; background: rgba(255,179,0,0.06); border: 1px solid rgba(255,179,0,0.2); border-radius: var(--radius); margin: 32px 0; color: #8a5a00; }
.event-policy-box > svg { color: #b87900; flex-shrink: 0; margin-top: 2px; }
.event-policy-box strong { display: block; font-size: 14px; font-weight: 700; color: #8a5a00; margin-bottom: 4px; }
.event-policy-box p { font-size: 13.5px; line-height: 1.6; color: #8a5a00; margin: 0; font-weight: 400; }

/* Registration card additions */
.event-reg-card--closed { background: linear-gradient(135deg, #2a2a32 0%, #1a1a1e 100%); opacity: 0.85; }
.event-reg-deadline { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.55); margin: 0 0 16px; padding: 8px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.event-reg-deadline svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Member savings nudge */
.event-member-nudge { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(0,102,255,0.06) 100%); border: 1px solid rgba(0,102,255,0.15); border-radius: var(--radius); font-size: 13px; line-height: 1.5; color: var(--dark-gray); }
.event-member-nudge svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.event-member-nudge a { color: var(--blue); font-weight: 600; text-decoration: none; white-space: nowrap; }
.event-member-nudge a:hover { text-decoration: underline; }
.share-links { display: flex; gap: 8px; }
.share-btn { padding: 8px 14px; border-radius: 60px; font-size: 12px; font-weight: 500; border: 1px solid var(--light-gray); color: var(--dark-gray); transition: all 0.2s; display: inline-block; }
.share-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #e63636; transform: translateY(-1px); }

/* Registration popup */
.reg-popup-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.reg-popup-overlay.open { display: flex; }
.reg-popup { background: var(--white); border-radius: var(--radius-lg); padding: 40px; max-width: 520px; width: 100%; position: relative; animation: popupSlideUp 0.4s ease; }
.reg-popup-close { position: absolute; top: 16px; right: 16px; background: var(--off-white); border: none; color: var(--dark-gray); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.reg-popup h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.reg-popup-event { font-size: 14px; color: var(--mid-gray); margin-bottom: 24px; }

/* ===== MEMBERSHIP PAGE ===== */
.membership-hero { margin-top: var(--header-h); position: relative; display: flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, var(--black) 0%, #2A2A32 60%, #183862 100%); overflow: hidden; }
.membership-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 70%; height: 160%; background: radial-gradient(ellipse, rgba(24,56,98,0.1) 0%, transparent 70%); pointer-events: none; }
.membership-hero-top { max-width: var(--max-width); margin: 0 auto; padding: 80px 32px 48px; position: relative; z-index: 1; text-align: center; color: var(--white); }
.membership-hero-title { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.membership-hero-desc { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; line-height: 1.65; }
.membership-hero-pillars { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 32px 80px; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.membership-hero-pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.3s; color: var(--white); }
.membership-hero-pillar:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.mhp-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.mhp-icon--cyan { background: rgba(7,177,218,0.15); }
.mhp-icon--blue { background: rgba(24,56,98,0.15); }
.mhp-icon--red { background: rgba(240,103,87,0.15); }
.membership-hero-pillar h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.membership-hero-pillar p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 400; }

/* Tier cards - horizontal scroll */
.tier-cards-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; margin-bottom: 40px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.tier-cards-scroll::-webkit-scrollbar { height: 6px; }
.tier-cards-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 3px; }
.tier-cards-scroll::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
.tier-card { flex: 0 0 280px; background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--light-gray); scroll-snap-align: start; display: flex; flex-direction: column; transition: all 0.3s; position: relative; overflow: hidden; }
.tier-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(0,0,0,0.06); transform: translateY(-3px); }
.tier-card--featured { border-color: var(--blue); border-width: 2px; }
.tier-card--featured::after { content: 'MOST POPULAR'; position: absolute; top: 16px; right: -28px; background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 32px; transform: rotate(45deg); white-space: nowrap; }
.tier-card-bar { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.tier-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tier-card-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.tier-card-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.tier-card-audience { font-size: 11px; color: var(--mid-gray); margin-bottom: 12px; }
.tier-card-desc { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 20px; }

/* Simplified table header */
.membership-benefits .benefits-table thead th { padding: 14px 14px; }
.membership-benefits .th-featured::after { display: none; }

.membership-benefits { padding: 100px 0; background: var(--white); }
.membership-benefits-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.membership-benefits-header p { font-size: 16px; color: var(--dark-gray); font-weight: 400; line-height: 1.65; }
.benefits-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--light-gray); margin-top: 16px; }
.benefits-table { width: 100%; min-width: 960px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.benefits-table thead th { padding: 20px 14px 16px; font-weight: 700; font-size: 14px; text-align: center; vertical-align: top; border-bottom: 2px solid var(--light-gray); background: var(--off-white); }
.benefits-table thead th:first-child { text-align: left; width: 240px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); }
.tier-name { display: block; font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.tier-price { display: block; font-size: 17px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.tier-note { display: block; font-size: 10px; font-weight: 400; color: var(--mid-gray); margin-bottom: 8px; }
.tier-desc { display: block; font-size: 11px; font-weight: 400; color: var(--dark-gray); line-height: 1.5; margin-bottom: 10px; max-width: 160px; margin-left: auto; margin-right: auto; }
.th-featured .tier-desc { color: rgba(255,255,255,0.45) !important; }
.tier-apply { display: inline-block; padding: 6px 14px; border-radius: 60px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; transition: all 0.2s; cursor: pointer; text-decoration: none; }
.tier-apply-dark { background: var(--black); color: var(--white); }
.tier-apply-dark:hover { background: var(--blue); }
.tier-apply-outline { border: 1px solid var(--light-gray); color: var(--dark-gray); background: var(--white); }
.tier-apply-outline:hover { border-color: var(--black); color: var(--black); }
.th-featured { background: var(--white) !important; position: relative; border-left: 2px solid var(--red) !important; border-right: 2px solid var(--red) !important; border-top: 2px solid var(--red) !important; }
.th-featured .tier-name { color: var(--black) !important; }
.th-featured::after { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 4px; white-space: nowrap; z-index: 1; }
.benefits-table tbody td { padding: 14px 14px; text-align: center; border-bottom: 1px solid var(--light-gray); font-weight: 400; color: var(--dark-gray); }
.benefits-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--black); font-size: 13px; }
.benefits-table tbody tr:last-child td { border-bottom: none; }
.benefits-table tbody tr:hover { background: rgba(24,56,98,0.02); }
.td-featured { background: rgba(240,103,87,0.02); border-left: 2px solid var(--red) !important; border-right: 2px solid var(--red) !important; }
.benefits-table tbody tr:last-child .td-featured { border-bottom: 2px solid var(--red) !important; }
.check { color: var(--blue); font-weight: 700; font-size: 16px; }
.dash { color: var(--light-gray); }

.membership-pro { padding: 80px 0; background: var(--off-white); }
.membership-pro-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.membership-pro-header p { font-size: 16px; color: var(--dark-gray); font-weight: 400; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pro-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; border: 1px solid transparent; transition: all 0.3s; }
.pro-card:hover { border-color: var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pro-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pro-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.pro-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.pro-note { font-size: 11px; color: var(--mid-gray); margin-bottom: 12px; }
.pro-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 16px; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--blue); transform: translateY(-1px); }

.membership-inquiry { padding: 100px 0; background: var(--off-white); }
.inquiry-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.inquiry-trust { display: flex; flex-direction: column; gap: 16px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(7,177,218,0.1); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--cyan); margin-top: 2px; }
.trust-item p { font-size: 15px; margin: 0; }
.inquiry-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; }
.inquiry-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark-gray); }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea { padding: 12px 16px; border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 14px; color: var(--black); background: var(--white); outline: none; transition: border-color 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B8B8C0' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 24px; width: 100%; padding: 16px; background: var(--black); color: var(--white); border: none; border-radius: 60px; font-family: var(--font-display); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: var(--blue); }

/* ===== Phone input: country code picker + number field ===== */
.phone-input { display: flex; gap: 8px; align-items: stretch; }
.cc-picker { position: relative; flex: 0 0 auto; }
.cc-picker__btn {
  display: flex; align-items: center; gap: 8px;
  height: 100%; min-height: 47px; padding: 0 14px;
  background: var(--white); border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-display); font-size: 14px; color: var(--black);
  white-space: nowrap; transition: border-color 0.3s;
}
.cc-picker__btn:hover { border-color: var(--mid-gray); }
.cc-picker--open .cc-picker__btn { border-color: var(--blue); }
.cc-picker__flag { font-size: 18px; line-height: 1; }
.cc-picker__dial { font-weight: 600; letter-spacing: 0.2px; }
.cc-picker__caret { font-size: 10px; color: var(--mid-gray); margin-left: 2px; transition: transform 0.2s; }
.cc-picker--open .cc-picker__caret { transform: rotate(180deg); }
.cc-picker__number { flex: 1 1 auto; min-width: 0; }
.cc-picker__panel {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 100;
  min-width: 320px; max-width: 380px; max-height: 280px;
  overflow-y: auto; background: var(--white);
  border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 4px 0;
}
.cc-picker__opt {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  width: 100%; padding: 10px 14px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 14px; color: var(--black);
  transition: background 0.15s;
}
.cc-picker__opt:hover, .cc-picker__opt:focus { background: var(--off-white); outline: none; }
.cc-picker__opt-flag { font-size: 18px; line-height: 1; }
.cc-picker__opt-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-picker__opt-dial { color: var(--mid-gray); font-size: 13px; font-variant-numeric: tabular-nums; }
.cc-picker__sep { height: 1px; background: var(--light-gray); margin: 4px 14px; }

/* ===== Segmented control (Member / Non-member) ===== */
.segmented {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 4px; background: var(--off-white);
  border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm);
}
.segmented__opt {
  padding: 10px 16px; background: transparent; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--dark-gray); border-radius: calc(var(--radius-sm) - 4px);
  transition: all 0.2s;
}
.segmented__opt:hover { color: var(--black); }
.segmented__opt--active {
  background: var(--black); color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.segmented__opt--active:hover { color: var(--white); }

/* ===== Registration popup: terms note ===== */
.reg-popup-terms {
  font-size: 12px; line-height: 1.5; color: var(--mid-gray);
  margin: 18px 0 0; padding: 12px 14px;
  background: var(--off-white); border-radius: var(--radius-sm);
}

/* ===== MEMBERSHIP PAGE v2 ===== */
.ms-hero { margin-top: var(--header-h); position: relative; overflow: hidden; min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; justify-content: center; }
.ms-hero-bg { position: absolute; inset: 0; background-image: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(13,27,42,0.78) 40%, rgba(26,26,30,0.86) 100%), url('/images/hero-membership.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; z-index: 0; }
.ms-hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(24,56,98,0.12) 0%, transparent 60%); }
.ms-hero-content { position: relative; z-index: 1; padding: 80px 0 88px; color: var(--white); }
.ms-hero-title { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1.05; margin-bottom: 20px; text-align: center; }
.ms-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.7; max-width: 600px; margin: 0 auto 40px; text-align: center; }
.ms-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero pillar cards */
.ms-hero-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.ms-hero-pillar { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s; }
.ms-hero-pillar:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.ms-hero-pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ms-hero-pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ms-hero-pillar p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* Why join */
.ms-why { padding: 100px 0; background: var(--off-white); }
.ms-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ms-why-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.ms-why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.ms-why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ms-why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.ms-why-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }

/* Differentiator */
.ms-differ { padding: 100px 0; background: var(--white); }
.ms-differ-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.ms-differ-text p { font-size: 16px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }
.ms-differ-compare { display: flex; align-items: stretch; gap: 0; }
.ms-differ-vs { display: flex; align-items: center; justify-content: center; padding: 0 16px; font-size: 14px; font-weight: 700; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; }
.ms-differ-box { flex: 1; border-radius: var(--radius-lg); padding: 28px 24px; }
.ms-differ-box--agency { background: var(--off-white); border: 1px solid var(--light-gray); }
.ms-differ-box--hub { background: rgba(24,56,98,0.04); border: 1px solid rgba(24,56,98,0.15); }
.ms-differ-box-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray); margin-bottom: 4px; }
.ms-differ-box-meta { font-size: 13px; color: var(--mid-gray); font-weight: 400; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--light-gray); }
.ms-differ-box-list { list-style: none; padding: 0; }
.ms-differ-box-list li { font-size: 13px; color: var(--dark-gray); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.ms-differ-box--agency .ms-differ-box-list li::before { content: '–'; color: var(--mid-gray); flex-shrink: 0; }
.ms-differ-box--hub .ms-differ-box-list li::before { content: '→'; color: var(--blue); font-weight: 600; flex-shrink: 0; }

/* Tiers section (outside hero) */
.ms-tiers { padding: 100px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 60%, #1a1a1e 100%); position: relative; overflow: hidden; }
.ms-tiers::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 20%, rgba(7,177,218,0.04) 0%, transparent 60%); pointer-events: none; }
.ms-tiers .container { position: relative; z-index: 1; }
.ms-tiers .section-label { color: var(--cyan); }
.ms-tiers .section-title { color: var(--white); }
.ms-tiers .section-title + p { color: rgba(255,255,255,0.5) !important; }
.ms-sme-note { font-size: 11px; color: var(--cyan); font-weight: 500; margin-bottom: 12px; padding: 6px 10px; background: rgba(7,177,218,0.08); border-radius: 4px; line-height: 1.4; }

.ms-premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.ms-premium-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: all 0.3s; color: var(--white); }
.ms-premium-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.ms-premium-card--featured { border-color: var(--red); background: rgba(240,103,87,0.06); }
.ms-premium-badge { position: absolute; top: 16px; right: 16px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.ms-premium-bar { height: 4px; border-radius: 2px; margin-bottom: 24px; }
.ms-premium-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.ms-premium-price { font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.ms-premium-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4); }
.ms-premium-card > p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 400; margin-bottom: 20px; }
.ms-premium-highlights { list-style: none; padding: 0; margin-bottom: 24px; }
.ms-premium-highlights li { font-size: 13px; color: rgba(255,255,255,0.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.ms-premium-highlights li::before { content: '→'; color: var(--cyan); font-weight: 600; }

.ms-secondary { padding: 80px 0; background: var(--off-white); }
.ms-secondary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ms-secondary-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--light-gray); display: flex; flex-direction: column; transition: all 0.3s; }
.ms-secondary-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ms-secondary-bar { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.ms-secondary-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ms-secondary-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.ms-secondary-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.ms-secondary-card > p { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 16px; }
.ms-secondary-highlights { list-style: none; padding: 0; margin-bottom: 20px; }
.ms-secondary-highlights li { font-size: 13px; color: var(--dark-gray); padding: 5px 0; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 8px; font-weight: 400; }
.ms-secondary-highlights li::before { content: '\2192'; color: var(--blue); font-weight: 600; }

/* Other tiers (Observer, Program Partner, Honorary) */
.ms-other { padding: 60px 0; background: var(--off-white); }
.ms-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.ms-other-card { padding: 28px 24px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--light-gray); }
.ms-other-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ms-other-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.ms-other-price { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.ms-other-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.55; font-weight: 400; margin-bottom: 14px; }
.ms-other-link { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
.ms-other-link:hover { text-decoration: underline; }

/* ===== MEMBERSHIP V3 — SIMPLIFIED LAYOUT ===== */

/* Discount note */
.ms-discount-box { display: flex; align-items: flex-start; gap: 20px; max-width: 880px; margin: 56px auto 0; padding: 24px 28px; background: linear-gradient(135deg, rgba(7,177,218,0.06) 0%, rgba(24,56,98,0.04) 100%); border: 1px solid rgba(7,177,218,0.2); border-radius: var(--radius-lg); }
.ms-discount-box--dark { background: linear-gradient(135deg, rgba(7,177,218,0.08) 0%, rgba(7,177,218,0.03) 100%); border: 1px solid rgba(7,177,218,0.2); }
.ms-discount-box--dark .ms-discount-text h3 { color: var(--white); }
.ms-discount-box--dark .ms-discount-text p { color: rgba(255,255,255,0.65); }
.ms-discount-box--dark .ms-discount-text a { color: var(--cyan); }
.ms-discount-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(7,177,218,0.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; }
.ms-discount-text h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; color: var(--black); }
.ms-discount-text p { font-size: 14px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin: 0; }
.ms-discount-text a { color: var(--blue); font-weight: 600; }

/* Compare table (3 corporate tiers) */
.ms-compare { padding: 80px 0; background: var(--off-white); }
.ms-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); padding-top: 16px; }
.ms-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; min-width: 720px; }
.ms-compare-table thead th { background: var(--off-white); padding: 24px 20px; text-align: center; vertical-align: top; border-bottom: 2px solid var(--light-gray); position: relative; }
.ms-compare-table thead th:first-child { background: var(--white); border-bottom: 2px solid var(--light-gray); }
.ms-compare-table .ms-compare-th-featured { background: linear-gradient(180deg, rgba(240,103,87,0.08) 0%, rgba(240,103,87,0.02) 100%); border-bottom: 2px solid var(--red); }
.ms-compare-table .ms-compare-th-featured::before { content: 'MOST POPULAR'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; padding: 5px 12px; border-radius: 4px; white-space: nowrap; box-shadow: 0 4px 12px rgba(240,103,87,0.25); }
.ms-compare-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-bottom: 8px; }
.ms-compare-tier-name { display: block; font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 4px; line-height: 1.25; }
.ms-compare-tier-price { display: block; font-size: 13px; font-weight: 600; color: var(--blue); }
.ms-compare-table tbody td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--light-gray); color: var(--dark-gray); font-size: 13px; vertical-align: middle; }
.ms-compare-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--black); width: 30%; }
.ms-compare-table tbody td.ms-compare-td-featured { background: rgba(240,103,87,0.04); font-weight: 600; color: var(--black); }
.ms-compare-table tbody tr:last-child td.ms-compare-td-featured { border-bottom: none; }
.ms-compare-table .dash { color: #d0d0d4; font-weight: 400; }
.ms-compare-table tbody td em { font-style: italic; color: var(--mid-gray); font-size: 11px; font-weight: 400; }
.ms-compare-cat-row td { background: var(--off-white) !important; padding: 12px 20px !important; font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray) !important; text-align: left !important; }
/* Featured column subtle tint extends through everything */
.ms-compare-table thead th.ms-compare-th-featured,
.ms-compare-table tbody td.ms-compare-td-featured { box-shadow: inset 1px 0 0 rgba(240,103,87,0.15), inset -1px 0 0 rgba(240,103,87,0.15); }
.ms-compare-cat-num { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 4px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; margin-right: 10px; letter-spacing: 0; }
.ms-compare-note { font-size: 12px; color: var(--mid-gray); padding: 20px 24px; line-height: 1.6; background: var(--off-white); border-top: 1px solid var(--light-gray); margin: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.ms-compare-note strong { color: var(--dark-gray); }

/* For Institutions */
.ms-institutions { padding: 100px 0; background: var(--white); }
.ms-institutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.ms-institution-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--light-gray); transition: all 0.3s; }
.ms-institution-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ms-institution-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ms-institution-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.ms-institution-card > p { font-size: 14px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin-bottom: 20px; }
.ms-institution-highlights { list-style: none; padding: 0; margin: 0; }
.ms-institution-highlights li { font-size: 13px; color: var(--dark-gray); padding: 8px 0; padding-left: 22px; position: relative; line-height: 1.55; border-bottom: 1px solid var(--light-gray); }
.ms-institution-highlights li:last-child { border-bottom: none; }
.ms-institution-highlights li::before { content: '\2192'; position: absolute; left: 0; top: 8px; color: var(--blue); font-weight: 600; }

/* For Professionals */
.ms-professionals { padding: 100px 0; background: var(--off-white); }
.ms-professionals-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
.ms-professionals-text > p { font-size: 16px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; margin-bottom: 24px; }
.ms-prof-highlights { list-style: none; padding: 0; }
.ms-prof-highlights li { font-size: 14px; color: var(--dark-gray); padding: 8px 0; padding-left: 22px; position: relative; line-height: 1.55; }
.ms-prof-highlights li::before { content: '\2713'; position: absolute; left: 0; top: 8px; color: var(--cyan); font-weight: 700; }
.ms-professionals-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ms-prof-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--light-gray); display: flex; flex-direction: column; position: relative; }
.ms-prof-card-bar { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.ms-prof-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ms-prof-price { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.ms-prof-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.ms-prof-card p { font-size: 13px; color: var(--dark-gray); line-height: 1.55; font-weight: 400; margin-bottom: 18px; flex: 1; }
.ms-prof-card p a { color: var(--blue); font-weight: 600; }
.ms-prof-young-badge { position: absolute; top: 38px; right: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--cyan); background: rgba(7,177,218,0.1); border: 1px solid rgba(7,177,218,0.3); padding: 3px 8px; border-radius: 4px; }
.ms-prof-card--young { background: linear-gradient(180deg, rgba(7,177,218,0.04) 0%, var(--white) 60%); border-color: rgba(7,177,218,0.2); }

/* Observer last-resort */
.ms-observer { padding: 80px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0d1b2a 50%, #1a1a1e 100%); }
.ms-observer-inner { max-width: 880px; margin: 0 auto; display: flex; align-items: center; gap: 32px; padding: 40px 44px; background: rgba(255,255,255,0.03); border: 1px solid rgba(7,177,218,0.18); border-radius: var(--radius-lg); }
.ms-observer-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; background: rgba(7,177,218,0.1); display: flex; align-items: center; justify-content: center; }
.ms-observer-content { color: var(--white); }
.ms-observer-content h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
.ms-observer-content > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 400; margin-bottom: 18px; }
.ms-observer-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ms-observer-meta-item { font-size: 13px; color: rgba(255,255,255,0.7); }
.ms-observer-meta-item strong { color: var(--cyan); font-weight: 800; font-size: 18px; margin-right: 4px; }
.ms-observer-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Benefits table improvements */
.ms-table-note { font-size: 12px; color: var(--mid-gray); font-style: italic; margin-top: 16px; }
.tier-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }

.ms-compare { padding: 100px 0; background: var(--white); }

.ms-professional { padding: 80px 0; background: var(--off-white); }
.ms-pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.ms-pro-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--light-gray); display: flex; flex-direction: column; transition: all 0.3s; }
.ms-pro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ms-pro-bar { height: 4px; border-radius: 2px; margin-bottom: 20px; }
.ms-pro-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ms-pro-price { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.ms-pro-price span { font-size: 13px; font-weight: 400; color: var(--mid-gray); }
.ms-pro-card > p { font-size: 13px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; margin-bottom: 16px; }
.ms-pro-highlights { list-style: none; padding: 0; margin-bottom: 20px; }
.ms-pro-highlights li { font-size: 13px; color: var(--dark-gray); padding: 5px 0; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 8px; font-weight: 400; }
.ms-pro-highlights li::before { content: '→'; color: var(--blue); font-weight: 600; }

.ms-founders { padding: 80px 0; background: var(--black); color: var(--white); }
.ms-founders-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.ms-founders-text .kicker { margin-bottom: 16px; }
.ms-founders-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 16px; }
.ms-founders-text p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.65; }
.ms-founders-perks { display: flex; flex-direction: column; gap: 12px; }
.ms-founders-perk { font-size: 15px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06); }
.ms-founders-perk span { color: var(--cyan); font-weight: 600; }

/* ===== APPLICATION FORM ===== */
.apply-section { padding: 60px 0 80px; }
.apply-form-wrap { max-width: 760px; margin: 0 auto; }
.apply-form h3 { font-size: 20px; font-weight: 800; margin: 40px 0 20px; padding-top: 24px; border-top: 1px solid var(--light-gray); }
.apply-form h3:first-of-type { border-top: none; margin-top: 24px; padding-top: 0; }
.apply-form h4 { font-size: 15px; font-weight: 700; color: var(--dark-gray); margin: 24px 0 16px; }
.apply-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.apply-type-option { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border: 2px solid var(--light-gray); border-radius: var(--radius-lg); cursor: pointer; transition: all 0.2s; }
.apply-type-option:hover { border-color: var(--mid-gray); }
.apply-type-option--active { border-color: var(--blue); background: rgba(24,56,98,0.03); }
.apply-type-option input { display: none; }
.apply-type-icon { font-size: 28px; flex-shrink: 0; }
.apply-type-option strong { display: block; font-size: 15px; margin-bottom: 2px; }
.apply-type-option span { font-size: 13px; color: var(--dark-gray); font-weight: 400; }
.rep-block { margin-bottom: 24px; padding: 20px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--light-gray); }
.rep-block-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rep-remove { background: none; border: none; font-size: 20px; color: var(--mid-gray); cursor: pointer; padding: 4px 8px; }
.rep-remove:hover { color: var(--red); }
.form-hint { display: block; font-size: 12px; margin-top: 6px; font-weight: 500; }
.phone-field { display: flex; gap: 0; }
.phone-dial { flex: 0 0 110px; border-radius: var(--radius-sm) 0 0 var(--radius-sm); border-right: none; font-size: 13px; padding: 12px 8px; }
.phone-number { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; flex: 1; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sector-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dark-gray); cursor: pointer; padding: 6px 10px; border-radius: var(--radius-sm); transition: background 0.2s; }
.sector-checkbox:hover { background: var(--off-white); }
.sector-checkbox input { accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.sector-checkbox span { line-height: 1.3; }
.form-message { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
.form-message--success { background: rgba(7,177,218,0.08); border: 1px solid rgba(7,177,218,0.2); color: var(--dark-gray); }
.form-message--error { background: rgba(240,103,87,0.08); border: 1px solid rgba(240,103,87,0.2); color: var(--red); }

/* Founders popup */
.founders-popup-overlay { display: flex; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; animation: popupFadeIn 0.3s ease; }
.founders-popup-overlay.hidden { display: none; }
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
.founders-popup { background: linear-gradient(135deg, var(--black) 0%, #2A2A32 100%); border-radius: var(--radius-lg); padding: 48px; max-width: 580px; width: 100%; color: var(--white); position: relative; overflow: hidden; animation: popupSlideUp 0.4s ease; }
@keyframes popupSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.founders-popup::before { content: '2026'; position: absolute; bottom: -20px; right: -10px; font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.03); letter-spacing: -8px; pointer-events: none; }
.founders-popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.founders-popup-close:hover { background: rgba(255,255,255,0.2); }
.founders-popup h2 { font-size: 28px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.founders-popup-perks { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.founders-popup-perk { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.8); }
.fpp-icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: rgba(7,177,218,0.15); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--cyan); }

/* ===== 404 / ERROR ===== */
.error-page { margin-top: var(--header-h); padding: 120px 0; text-align: center; }
.error-page h1 { font-size: 64px; font-weight: 800; color: var(--light-gray); }
.error-page p { font-size: 18px; color: var(--dark-gray); margin: 16px 0 32px; }

/* ===== BUSINESS MATCHING ===== */
.bm-challenge { padding: 80px 0; }
.bm-challenge-inner { max-width: 700px; }
.bm-challenge-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.bm-challenge-punchline { font-size: 20px !important; font-weight: 700 !important; color: var(--black) !important; margin-top: 24px !important; }

.bm-process { padding: 80px 0; background: var(--off-white); }
.bm-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.bm-step { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bm-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bm-step-num { font-size: 36px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 16px; }
.bm-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bm-step p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bm-who { padding: 80px 0; }
.bm-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bm-who-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px 36px; }
.bm-who-card--jp { border-top: 3px solid var(--red); }
.bm-who-card--cz { border-top: 3px solid var(--blue); }
.bm-who-flag { font-size: 28px; margin-bottom: 16px; }
.bm-who-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.bm-who-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; margin-bottom: 16px; }
.bm-who-card ul { list-style: none; padding: 0; margin: 0; }
.bm-who-card ul li { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.6; padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); }
.bm-who-card ul li:last-child { border-bottom: none; }
.bm-who-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 600; }

.bm-europe { padding: 80px 0; background: var(--black); text-align: center; }
.bm-europe-inner { margin-bottom: 0; }
.bm-europe-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; margin-top: 8px; }
.bm-europe-stat-num { font-size: 32px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.bm-europe-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }

.bm-why { padding: 80px 0; background: var(--off-white); }
.bm-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.bm-why-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bm-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bm-why-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bm-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.bm-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bm-cta { padding: 80px 0; background: linear-gradient(135deg, #1A1A1E 0%, #0F2447 100%); text-align: center; }
.bm-cta-inner { max-width: 600px; margin: 0 auto; }
.bm-cta-inner h2 { color: var(--white); font-size: clamp(28px, 3vw, 36px); font-weight: 900; margin-bottom: 16px; }
.bm-cta-inner p { color: rgba(255,255,255,0.6); font-size: 16px; font-weight: 400; line-height: 1.7; margin-bottom: 32px; }

.bm-gateway { padding: 80px 0; background: var(--black); }
.bm-gateway-text { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.bm-gateway-text p { color: rgba(255,255,255,0.65); font-size: 16px; font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.bm-gateway-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.bm-gateway-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; }
.bm-gateway-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bm-gateway-card p { color: rgba(255,255,255,0.55); font-size: 15px; font-weight: 400; line-height: 1.7; }
.bm-gateway-cta { text-align: center; }
.bm-gateway-cta p { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 400; line-height: 1.7; margin-bottom: 20px; }
.bm-gateway-cta p strong { color: rgba(255,255,255,0.85); }

/* ===== BUSINESS DESK NETWORK ===== */
.bd-network { padding: 100px 0; background: var(--white); }
.bd-network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bd-network-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bd-network-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bd-network-icon { font-size: 32px; margin-bottom: 16px; }
.bd-network-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bd-network-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }
.bd-network-note { margin-top: 32px; padding: 28px 32px; background: var(--white); border: 1px solid var(--light-gray); border-left: 3px solid var(--cyan); border-radius: var(--radius-lg); display: flex; gap: 20px; align-items: flex-start; max-width: 920px; margin-left: auto; margin-right: auto; }
.bd-network-note-icon { font-size: 24px; flex-shrink: 0; line-height: 1; padding-top: 4px; }
.bd-network-note h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.bd-network-note p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }
.bd-network-note strong { font-weight: 700; color: var(--black); }

/* ===== MARKET RESEARCH ===== */
.mr-why-matters { padding: 80px 0; }
.mr-why-inner { max-width: 720px; margin-bottom: 48px; }
.mr-why-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.mr-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mr-stat { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; border: 1px solid var(--light-gray); }
.mr-stat-num { font-size: 42px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 12px; }
.mr-stat-label { font-size: 13px; color: var(--dark-gray); font-weight: 400; line-height: 1.6; }
.mr-stat-label sup { color: var(--cyan); font-weight: 600; font-size: 10px; }
.mr-footnotes { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--light-gray); }
.mr-footnotes p { font-size: 11px; color: #999; font-weight: 400; line-height: 1.6; margin-bottom: 4px; }
.mr-footnotes p sup { color: var(--cyan); font-weight: 600; margin-right: 3px; }
.mr-footnotes p em { font-style: italic; }

.mr-services { padding: 80px 0; background: var(--off-white); }
.mr-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mr-service-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.mr-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.mr-service-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mr-service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.mr-service-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.mr-markets { padding: 80px 0; background: var(--black); }
.mr-market-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mr-market-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 32px; }
.mr-market-flag { font-size: 32px; margin-bottom: 12px; }
.mr-market-card h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.mr-market-highlights { margin-bottom: 20px; }
.mr-market-item { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mr-market-item:last-child { border-bottom: none; }
.mr-market-item-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; margin-right: 12px; }
.mr-market-item-value { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; text-align: right; }
.mr-market-note { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 400; line-height: 1.7; margin-top: 8px; }

.mr-process { padding: 80px 0; }
.mr-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.mr-process-step { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.mr-process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.mr-process-num { font-size: 36px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 16px; }
.mr-process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.mr-process-step p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.mr-advantage { padding: 80px 0; background: var(--off-white); }
.mr-advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mr-adv-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.mr-adv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.mr-adv-num { font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 16px; font-family: 'IBM Plex Sans JP', sans-serif; }
.mr-adv-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.mr-adv-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

/* ===== TRANSLATION ===== */
.tr-challenge { padding: 80px 0; }
.tr-challenge-inner { max-width: 720px; }
.tr-challenge-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.tr-challenge-punchline { font-size: 20px !important; font-weight: 700 !important; color: var(--black) !important; margin-top: 24px !important; }

.tr-services { padding: 80px 0; background: var(--off-white); }
.tr-category-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.tr-category-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tr-category-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.tr-category-header p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.6; }
.tr-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tr-item { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform 0.3s, box-shadow 0.3s; }
.tr-item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.05); }
.tr-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.tr-item p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.tr-languages { padding: 80px 0; background: var(--black); }
.tr-lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tr-lang-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 32px; }
.tr-lang-pair { font-size: 28px; margin-bottom: 16px; letter-spacing: 4px; }
.tr-lang-card h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.tr-lang-card p { color: rgba(255,255,255,0.55); font-size: 15px; font-weight: 400; line-height: 1.7; }

.tr-why { padding: 80px 0; }
.tr-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tr-why-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.tr-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.tr-why-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tr-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.tr-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

/* ===== LOGISTICS ===== */
.lg-challenge { padding: 80px 0; }
.lg-challenge-inner { max-width: 720px; }
.lg-challenge-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.lg-challenge-punchline { font-size: 20px !important; font-weight: 700 !important; color: var(--black) !important; margin-top: 24px !important; }

.lg-services { padding: 80px 0; background: var(--off-white); }
.lg-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lg-service-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.lg-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.lg-service-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lg-service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.lg-service-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.lg-complex { padding: 80px 0; background: var(--black); }
.lg-complex-inner { margin-bottom: 0; }
.lg-complex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lg-complex-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s; }
.lg-complex-card:hover { transform: translateY(-4px); }
.lg-complex-num { font-size: 32px; margin-bottom: 16px; }
.lg-complex-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.lg-complex-card p { font-size: 15px; font-weight: 400; line-height: 1.7; }

.lg-beyond { padding: 80px 0; }
.lg-beyond-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.lg-beyond-item { display: flex; align-items: center; gap: 10px; background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 16px 24px; transition: transform 0.3s, box-shadow 0.3s; }
.lg-beyond-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.lg-beyond-flag { font-size: 24px; }
.lg-beyond-name { font-size: 15px; font-weight: 600; color: var(--black); }

.lg-directions { padding: 80px 0; background: var(--off-white); }
.lg-dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lg-dir-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px 36px; }
.lg-dir-card--cz { border-top: 3px solid var(--blue); }
.lg-dir-card--jp { border-top: 3px solid var(--red); }
.lg-dir-flag { font-size: 24px; margin-bottom: 16px; letter-spacing: 4px; }
.lg-dir-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.lg-dir-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; margin-bottom: 16px; }
.lg-dir-card ul { list-style: none; padding: 0; margin: 0; }
.lg-dir-card ul li { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.6; padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); }
.lg-dir-card ul li:last-child { border-bottom: none; }
.lg-dir-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 600; }

.lg-reach-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.lg-reach-block h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark-gray); margin-bottom: 16px; text-align: center; }

.lg-why { padding: 80px 0; background: var(--off-white); }
.lg-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.lg-why-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.lg-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.lg-why-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lg-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.lg-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

/* ===== TRADE MISSIONS ===== */
.tm-challenge { padding: 80px 0; }
.tm-challenge-inner { max-width: 720px; }
.tm-challenge-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.tm-challenge-punchline { font-size: 20px !important; font-weight: 700 !important; color: var(--black) !important; margin-top: 24px !important; }

.tm-directions { padding: 80px 0; background: var(--off-white); }
.tm-dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tm-dir-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px 36px; }
.tm-dir-card--cz { border-top: 3px solid var(--blue); }
.tm-dir-card--jp { border-top: 3px solid var(--red); }
.tm-dir-flag { font-size: 24px; margin-bottom: 16px; letter-spacing: 4px; }
.tm-dir-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.tm-dir-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; margin-bottom: 16px; }
.tm-dir-card ul { list-style: none; padding: 0; margin: 0; }
.tm-dir-card ul li { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.6; padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); }
.tm-dir-card ul li:last-child { border-bottom: none; }
.tm-dir-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 600; }

.tm-deliver { padding: 80px 0; }
.tm-deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tm-deliver-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.tm-deliver-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.tm-deliver-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tm-deliver-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.tm-deliver-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.tm-process { padding: 80px 0; background: var(--off-white); }
.tm-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.tm-process-step { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.tm-process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.tm-process-num { font-size: 36px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 16px; }
.tm-process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.tm-process-step p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.tm-why { padding: 80px 0; }
.tm-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tm-why-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.tm-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.tm-why-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tm-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.tm-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.tm-audience { padding: 80px 0; background: var(--black); }
.tm-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tm-audience-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s; }
.tm-audience-item:hover { transform: translateY(-4px); }
.tm-audience-icon { font-size: 32px; margin-bottom: 16px; }
.tm-audience-item h4 { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.tm-audience-item p { color: rgba(255,255,255,0.55); font-size: 15px; font-weight: 400; line-height: 1.7; }

/* ===== BUSINESS TRAVEL SUPPORT ===== */
.bts-need { padding: 80px 0; }
.bts-need-inner { max-width: 720px; }
.bts-need-inner p { font-size: 17px; color: var(--dark-gray); font-weight: 400; line-height: 1.8; margin-bottom: 16px; }
.bts-need-punchline { font-size: 20px !important; font-weight: 700 !important; color: var(--black) !important; margin-top: 24px !important; }

.bts-executive { padding: 80px 0; background: var(--off-white); }
.bts-exec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bts-exec-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bts-exec-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bts-exec-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bts-exec-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.bts-exec-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bts-directions { padding: 80px 0; }
.bts-dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bts-dir-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; }
.bts-dir-flag { font-size: 22px; margin-bottom: 12px; letter-spacing: 4px; }
.bts-dir-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.bts-dir-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }

.bts-planning { padding: 0 0 80px; }
.bts-planning-card { display: flex; gap: 32px; align-items: flex-start; background: linear-gradient(135deg, rgba(7,177,218,0.06), rgba(24,56,98,0.06)); border: 1px solid rgba(7,177,218,0.18); border-left: 4px solid var(--cyan); border-radius: var(--radius-lg); padding: 36px 40px; }
.bts-planning-icon { font-size: 48px; flex-shrink: 0; line-height: 1; }
.bts-planning-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.bts-planning-content p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; margin-bottom: 12px; }
.bts-planning-content p:last-child { margin-bottom: 0; }
.bts-planning-content strong { font-weight: 700; color: var(--black); }
.bts-planning-note { padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.06); font-size: 14px !important; }

/* Dark variant for use on black backgrounds */
.bts-planning-card--dark { background: linear-gradient(135deg, rgba(7,177,218,0.08), rgba(24,56,98,0.08)); border: 1px solid rgba(7,177,218,0.25); border-left: 4px solid var(--cyan); margin-top: 40px; }
.bts-planning-card--dark .bts-planning-content h3 { color: var(--white); }
.bts-planning-card--dark .bts-planning-content p { color: rgba(255,255,255,0.85); }
.bts-planning-card--dark .bts-planning-content strong { color: var(--white); }
.bts-planning-card--dark .bts-planning-note { border-top-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }

.bts-events { padding: 80px 0; background: var(--off-white); }
.bts-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bts-event-item { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bts-event-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bts-event-icon { font-size: 32px; margin-bottom: 16px; }
.bts-event-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.bts-event-item p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bts-missions { padding: 80px 0; background: var(--black); }
.bts-missions-inner { max-width: 800px; margin-bottom: 0; }
.bts-missions-keypoints { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.bts-mission-point { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px 22px; }
.bts-mission-num { font-size: 18px; font-weight: 900; color: var(--cyan); flex-shrink: 0; line-height: 1.2; }
.bts-mission-point strong { color: var(--white); font-size: 16px; font-weight: 700; display: block; margin-bottom: 10px; }
.bts-mission-point p { color: rgba(255,255,255,0.78); font-size: 15px; font-weight: 400; line-height: 1.7; margin: 0; }

.bts-process { padding: 80px 0; }
.bts-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bts-process-step { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s; }
.bts-process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bts-process-num { font-size: 36px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 16px; }
.bts-process-step h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.bts-process-step p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bts-why { padding: 80px 0; background: var(--off-white); }
.bts-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.bts-why-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bts-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bts-why-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bts-why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.bts-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { padding: 60px 24px; }
  .founders-inner { grid-template-columns: 1fr; gap: 48px; }
  .content-grid { grid-template-columns: 1fr; }
  .highlights-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .home-actions-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .inquiry-inner { grid-template-columns: 1fr; gap: 48px; }
  .event-card-lg { grid-template-columns: 1fr; }
  .upcoming-regular-grid { grid-template-columns: repeat(2, 1fr); }
  .event-detail-grid { grid-template-columns: 1fr; }
  .event-brief-grid { grid-template-columns: repeat(2, 1fr); }
  .event-cohosts-grid { grid-template-columns: repeat(3, 1fr); }
  .event-supporters-grid { grid-template-columns: repeat(4, 1fr); }
  .event-cohosts-section { padding: 32px 24px; }
  .speakers-grid { grid-template-columns: 1fr; }
  .about-origin-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-leaders-grid { grid-template-columns: repeat(3, 1fr); }
  .about-hero-pillars { grid-template-columns: 1fr; }
  .about-leader-president { grid-template-columns: 1fr; }
  .about-structure-diagram { grid-template-columns: 1fr; gap: 16px; }
  .about-structure-bridge { transform: rotate(90deg); }
  .about-values-v2-grid { grid-template-columns: repeat(3, 1fr); }
  .about-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars-grid--two { grid-template-columns: repeat(2, 1fr); }
  .about-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .global-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .ms-premium-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ms-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-pro-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ms-founders-inner { grid-template-columns: 1fr; gap: 40px; }
  .ms-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-differ-inner { grid-template-columns: 1fr; gap: 48px; }
  .ms-differ-compare { flex-direction: column; gap: 0; }
  .ms-differ-vs { padding: 12px 0; }
  .ms-hero-pillars { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 0; }
  .ms-other-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .wg-v2-grid { grid-template-columns: 1fr; }
  .wg-hero-stats { gap: 32px; }
  .wgd-goals-grid { grid-template-columns: repeat(2, 1fr); }
  .wg-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .wg-intro-text { position: static; }
  .wg-pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .wg-howwork-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .wg-propose { flex-direction: column; text-align: center; align-items: stretch; gap: 20px; }
  .wgd-workon-grid { grid-template-columns: 1fr; max-width: 520px; margin: 40px auto 0; }
  .wgd-roadmap-timeline { grid-template-columns: 1fr; gap: 32px; }
  .wgd-roadmap-timeline::before { display: none; }
  .wgd-composition-grid { grid-template-columns: repeat(2, 1fr); }
  .wgd-leadership { grid-template-columns: 1fr; }
  .insight-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .expo-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .insight-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-desk-inner { grid-template-columns: 1fr; gap: 40px; }
  .insight-pavilion-grid { grid-template-columns: 1fr; }
  .bm-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-why-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-europe-stats { grid-template-columns: repeat(3, 1fr); }
  .bm-gateway-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 48px; }
  .mr-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bd-network-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-market-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .mr-process-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-items-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-lang-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .tr-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-complex-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-dir-grid { grid-template-columns: 1fr; }
  .lg-reach-row { grid-template-columns: 1fr; gap: 32px; }
  .tm-dir-grid { grid-template-columns: 1fr; }
  .tm-deliver-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-process-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-why-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .bts-exec-grid { grid-template-columns: repeat(2, 1fr); }
  .bts-dir-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .bts-events-grid { grid-template-columns: repeat(2, 1fr); }
  .bts-missions-keypoints { grid-template-columns: 1fr; gap: 16px; max-width: 680px; margin-left: auto; margin-right: auto; }
  .bts-process-grid { grid-template-columns: repeat(3, 1fr); }
  .bts-why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Membership v3 simplified */
  .ms-institutions-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .ms-professionals-inner { grid-template-columns: 1fr; gap: 36px; }
  .ms-professionals-cards { grid-template-columns: 1fr 1fr; }
  .ms-observer-inner { padding: 32px 28px; gap: 24px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .lang-switcher { display: none; }
  .mobile-toggle { display: flex; }
  .logo-img { height: 58px; }
  .logo--footer .logo-img { height: 76px; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(16,16,20,0.92) 0%, rgba(16,16,20,0.82) 40%, rgba(16,16,20,0.6) 100%); }
  .hero-inner { padding: 60px 24px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; color: rgba(255,255,255,0.82); }
  .live-bar-inner { flex-direction: column; gap: 16px; }
  .live-clock, .live-rates { flex-wrap: nowrap; justify-content: center; gap: 16px; }
  .live-clock-item { gap: 8px; }
  .live-clock-item .live-city { font-size: 13px; }
  .live-clock-item .live-time { font-size: 20px; }
  .live-clock-item .live-date { font-size: 11px; }
  .live-rate-item { gap: 6px; }
  .live-rate-value { font-size: 20px; }
  .live-rate-label { font-size: 13px; }
  .live-rate-unit { font-size: 12px; }
  .home-events-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-grid--4 { grid-template-columns: 1fr; }
  .pillars-row-3 { grid-template-columns: 1fr; }
  .pillars-row-2 { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .news-carousel, .news-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .wg-grid { grid-template-columns: 1fr; }
  .event-row { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .article-title { font-size: 26px; }
  .article-excerpt { font-size: 17px; }
  .article-meta { gap: 8px; }
  .gallery-thumb { width: 220px; }
  .article-share { flex-direction: column; align-items: flex-start; }
  .membership-hero-pillars { grid-template-columns: 1fr; }
  .ms-why-grid { grid-template-columns: 1fr; }
  .ms-differ-inner { grid-template-columns: 1fr; gap: 32px; }
  .ms-differ-compare { flex-direction: column; }
  .ms-differ-vs { padding: 10px 0; }
  .ms-differ-text .section-title { text-align: center; }
  .ms-hero-actions { flex-direction: column; align-items: center; }
  .ms-tiers { padding: 80px 0; }
  .ms-why { padding: 80px 0; }
  .ms-differ { padding: 80px 0; }
  .ms-secondary-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ms-hero-pillars { grid-template-columns: 1fr; max-width: 340px; margin: 40px auto 0; }
  .ms-other-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .pro-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founders-popup { padding: 32px; }
  .past-grid { grid-template-columns: 1fr; }
  .upcoming-regular-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .event-card-md { grid-template-columns: 1fr; }
  .event-card-md-img { aspect-ratio: 16 / 10; min-height: 0; }
  .event-card-sm-img { aspect-ratio: 16 / 10; }
  .upcoming-header, .past-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .event-detail-hero { min-height: 380px; }
  .event-detail-hero-inner h1 { font-size: 26px; }
  .event-brief { padding: 24px 0; }
  .event-brief-grid { grid-template-columns: 1fr; gap: 12px; }
  .event-brief-card { padding: 18px 18px; }
  .event-cohosts-section { padding: 24px 18px; margin: 32px 0 24px; }
  .event-cohosts-section h2 { font-size: 18px; }
  .event-cohosts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .event-cohost-card { min-height: 170px; padding: 16px 12px 14px; }
  .event-cohost-logo { height: 60px; }
  .event-cohost-name { font-size: 11px; -webkit-line-clamp: 5; }
  .event-supporters-section { padding: 20px; }
  .event-promo-banner { padding: 14px; margin: 28px 0 24px; }
  .event-promo-banner-caption { font-size: 11px; }
  .event-supporters-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .event-supporter-card { min-height: 115px; }
  .event-supporter-logo { height: 40px; }
  .venue-photo-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .venue-photo-caption { padding: 16px 18px; }
  .venue-photo-name { font-size: 16px; }
  .event-transport { padding: 18px 20px; }
  .event-policy-box { padding: 16px 18px; }
  .event-deadline-banner .container { padding: 0 20px; text-align: center; }
  .reg-popup { padding: 28px; }
  .about-leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .about-testimonials-grid { grid-template-columns: 1fr; }
  .about-values-v2-grid { grid-template-columns: 1fr 1fr; }
  .about-hero-title { font-size: 28px; }
  .leader-popup-header { flex-direction: column; text-align: center; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-pillars-grid--two { grid-template-columns: 1fr; }
  .about-pillar-tile { min-height: 260px; }
  .about-nl-form { flex-direction: column; }
  .global-nl-form { flex-direction: column; }
  .apply-type-selector { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .phone-dial { flex: 0 0 95px; }
  .nav-dropdown { display: none; }
  .insight-hero-title { font-size: 32px; }
  .insight-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .expo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .expo-stats-grid .insight-stat-num { font-size: 26px; }
  .insight-sectors-grid { grid-template-columns: 1fr; }
  .insight-culture-grid { grid-template-columns: 1fr; }
  .insight-rel-grid { grid-template-columns: 1fr; }
  .insight-incentives-grid { grid-template-columns: 1fr; }
  .insight-pavilion-grid { grid-template-columns: 1fr; }
  .insight-pavilion-img { min-height: 250px; }
  .insight-pavilion-awards { grid-template-columns: 1fr; }
  .expo-gallery { min-height: 300px; }
  .expo-gallery-track { min-height: 300px; }
  .expo-voices-grid { grid-template-columns: 1fr; }
  .insight-fairs-grid { grid-template-columns: 1fr; }
  .wg-hero-title { font-size: 28px; }
  .wg-hero-stats { flex-wrap: wrap; gap: 24px; }
  .wg-principle-inner { flex-direction: column; }
  .wg-v2-card { min-height: 340px; }
  .wg-upcoming-grid { grid-template-columns: 1fr; max-width: 320px; }
  .wgd-hero-title { font-size: 26px; }
  .wgd-goals-grid { grid-template-columns: 1fr; }
  .wgd-members-bar { gap: 16px; }
  .wg-whojoin-table th, .wg-whojoin-table td { padding: 14px 16px; font-size: 14px; }
  .wg-whojoin-table td:first-child { width: 45%; }
  .wg-propose { padding: 28px 24px; }
  .wgd-composition-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
  .wgd-intro-text { font-size: 16px; }
  .wgd-hero-subtitle { font-size: 16px; }
  .wg-closing-ctas, .wgd-closing-ctas { flex-direction: column; align-items: stretch; }
  .bm-steps-grid { grid-template-columns: 1fr; }
  .bm-who-grid { grid-template-columns: 1fr; }
  .bm-why-grid { grid-template-columns: 1fr; }
  .bm-europe-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .bm-europe-stat-num { font-size: 26px; }
  .bm-who-card { padding: 28px 24px; }
  .mr-stats-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .mr-stat-num { font-size: 34px; }
  .mr-services-grid { grid-template-columns: 1fr; }
  .bd-network-grid { grid-template-columns: 1fr; }
  .mr-market-cards { max-width: 100%; }
  .mr-market-card { padding: 28px 24px; }
  .mr-process-grid { grid-template-columns: 1fr; }
  .mr-advantage-grid { grid-template-columns: 1fr; }
  .tr-items-grid { grid-template-columns: 1fr; }
  .tr-lang-grid { max-width: 100%; }
  .tr-lang-card { padding: 28px 24px; }
  .tr-why-grid { grid-template-columns: 1fr; }
  .tr-category-header { flex-direction: column; gap: 12px; }
  .lg-services-grid { grid-template-columns: 1fr; }
  /* LOGISTICS - mobile */
  .lg-services-grid { grid-template-columns: 1fr; }
  .lg-complex-grid { grid-template-columns: 1fr; }
  .lg-complex-card { padding: 28px 24px; }
  .lg-why-grid { grid-template-columns: 1fr; }
  .lg-why-card { padding: 28px 24px; }
  .lg-beyond-grid { gap: 12px; }
  .lg-beyond-item { padding: 12px 18px; }
  .lg-dir-grid { grid-template-columns: 1fr; }
  .lg-dir-card { padding: 28px 24px; }
  .lg-reach-row { grid-template-columns: 1fr; gap: 32px; }
  .lg-service-card { padding: 28px 24px; }

  /* BUSINESS TRAVEL SUPPORT - mobile */
  .bts-exec-grid { grid-template-columns: 1fr; }
  .bts-exec-card { padding: 28px 24px; }
  .bts-dir-grid { grid-template-columns: 1fr; }
  .bts-dir-card { padding: 28px 24px; }
  .bts-events-grid { grid-template-columns: 1fr; }
  .bts-event-item { padding: 28px 24px; }
  .bts-missions-keypoints { grid-template-columns: 1fr; }
  .bts-mission-point { padding: 20px 18px; }
  .bts-process-grid { grid-template-columns: 1fr; }
  .bts-process-step { padding: 28px 24px; }
  .bts-why-grid { grid-template-columns: 1fr; }
  .bts-why-card { padding: 28px 24px; }
  .bts-planning-card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .bts-planning-icon { font-size: 36px; }
  .bts-planning-content h3 { font-size: 18px; }
  .bts-need-punchline { font-size: 18px !important; }
  .bts-missions-inner p { font-size: 15px !important; }

  /* TRADE MISSIONS (legacy) - mobile */
  .tm-deliver-grid { grid-template-columns: 1fr; }
  .tm-process-grid { grid-template-columns: 1fr; }
  .tm-why-grid { grid-template-columns: 1fr; }
  .tm-audience-grid { grid-template-columns: 1fr; }
  .tm-dir-card { padding: 28px 24px; }

  /* Membership v3 simplified */
  .ms-discount-box { flex-direction: column; gap: 14px; padding: 20px 22px; }
  .ms-compare { padding: 60px 0; }
  .ms-institutions { padding: 80px 0; }
  .ms-professionals { padding: 80px 0; }
  .ms-professionals-cards { grid-template-columns: 1fr; }
  .ms-observer-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .ms-observer-meta { justify-content: center; }
  .ms-observer-ctas { justify-content: center; }
  .ms-compare-table { font-size: 13px; min-width: 600px; }
  .ms-compare-table thead th { padding: 18px 12px; }
  .ms-compare-table tbody td { padding: 12px 10px; font-size: 12px; }
  .ms-compare-tier-name { font-size: 13px; }
  .ms-compare-tier-price { font-size: 12px; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
}

/* ===== PEOPLE PAGE ===== */

/* Group label with flex + entity badge */
.people-label-flex { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.people-label-flex span:first-child { font-size: 18px; line-height: 1; }
.people-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--blue); background: rgba(24,56,98,0.07); padding: 3px 12px; border-radius: 60px; text-transform: none; letter-spacing: 0; }
.people-badge--jp { color: var(--red); background: rgba(240,103,87,0.07); font-family: 'IBM Plex Sans JP', sans-serif; }

/* Group description text */
.people-group-desc { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; max-width: 660px; margin-bottom: 28px; }
.people-group-desc em { font-style: italic; }

/* Placeholder photo (no Directus image) */
.people-ph { background: linear-gradient(145deg, #EAEAEE 0%, #D8D8DC 100%) !important; }
.people-ph::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23B0B0B8' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 52px; }

/* Always-visible expand button (replaces hover-only arrow) */
.leader-expand-btn { position: absolute; bottom: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; opacity: 0.85; transition: opacity 0.3s, transform 0.3s; }
.about-leader-card:hover .leader-expand-btn { opacity: 1; transform: scale(1.1); }

/* Collaborators grid (smaller cards) */
.people-collab-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.people-collab-card { background: var(--white); border-radius: var(--radius); padding: 28px 16px; text-align: center; cursor: pointer; transition: all 0.3s; border: 1px solid var(--light-gray); }
.people-collab-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.people-collab-photo { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(145deg, #EAEAEE, #D8D8DC); background-size: cover; background-position: center; margin: 0 auto 14px; }
.people-collab-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.people-collab-card .leader-role { font-size: 12px; }
.people-collab-card .leader-company { font-size: 12px; }

/* Join CTA section */
.people-join { background: var(--black); padding: 100px 0; }
.people-join__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.people-join__content { max-width: 560px; }
.people-join__content h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.people-join__content p { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.7; margin-bottom: 28px; }
.people-join__kanji { font-family: 'IBM Plex Sans JP', sans-serif; font-size: clamp(8rem, 14vw, 14rem); font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; user-select: none; flex-shrink: 0; }

/* People responsive */
@media (max-width: 1024px) {
  .people-collab-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .people-collab-grid { grid-template-columns: repeat(2, 1fr); }
  .people-join__inner { flex-direction: column; text-align: center; }
  .people-join__kanji { font-size: 8rem; }
  .people-badge { display: none; }
}
@media (max-width: 480px) {
  .people-collab-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ── Survey page ─────────────────────────────── */
.survey-page { background: var(--off-white); padding: 64px 0 120px; }
.survey-embed { max-width: 800px; background: var(--white); border-radius: 16px; padding: 40px; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.survey-embed iframe { display: block; border: 0; width: 100%; min-height: 500px; }
@media (max-width: 768px) {
  .survey-page { padding: 40px 0 80px; }
  .survey-embed { padding: 20px; border-radius: 12px; }
}

/* ===== INTERNSHIP PAGE ===== */

/* Programme details grid */
.intern-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.intern-detail { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: all 0.3s; }
.intern-detail:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.intern-detail__icon { font-size: 28px; margin-bottom: 12px; }
.intern-detail h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.intern-detail p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; }

/* Application steps */
.intern-steps { max-width: 680px; margin: 0 auto; }
.intern-step { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 32px; position: relative; }
.intern-step:not(:last-child)::after { content: ''; position: absolute; left: 23px; top: 52px; bottom: -28px; width: 2px; background: var(--light-gray); }
.intern-step__num { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.intern-step__content h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; padding-top: 4px; }
.intern-step__content p { font-size: 15px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; }

/* Internship responsive */
@media (max-width: 1024px) {
  .intern-details-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .intern-details-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===== GOVERNANCE PAGE ===== */

/* Principles list */
.gov-principles { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.gov-principle { display: flex; gap: 20px; align-items: flex-start; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.gov-principle:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.gov-principle__icon { font-size: 24px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--off-white); border-radius: 12px; }
.gov-principle__content h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.gov-principle__content p { font-size: 14px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; }

/* Document download cards */
.gov-docs { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.gov-doc { display: flex; align-items: center; gap: 20px; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 24px 28px; text-decoration: none; color: inherit; transition: all 0.3s; }
.gov-doc:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(0,0,0,0.05); transform: translateY(-2px); }
.gov-doc__icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(24,56,98,0.06); border-radius: 14px; color: var(--blue); }
.gov-doc__info { flex: 1; }
.gov-doc__info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gov-doc__info p { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.5; margin-bottom: 4px; }
.gov-doc__meta { font-size: 12px; color: var(--mid-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.gov-doc__dl { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--off-white); border-radius: 50%; color: var(--blue); transition: all 0.3s; }
.gov-doc:hover .gov-doc__dl { background: var(--blue); color: var(--white); }

/* Governance responsive */
@media (max-width: 768px) {
  .gov-principle { flex-direction: column; gap: 12px; }
  .gov-doc { flex-direction: column; text-align: center; gap: 12px; }
  .gov-doc__dl { margin: 0 auto; }
}

/* ===== PRESS PAGE ===== */

/* Empty state for press releases */
.press-empty { text-align: center; padding: 60px 32px; background: var(--off-white); border-radius: var(--radius-lg); border: 2px dashed var(--light-gray); max-width: 520px; margin: 0 auto; }
.press-empty h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.press-empty p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; font-weight: 400; }

/* Download placeholders (Coming Soon items) */
.press-download-placeholder { display: flex; align-items: center; gap: 20px; background: var(--white); border: 1px dashed var(--light-gray); border-radius: var(--radius); padding: 24px 28px; }
.press-download-placeholder__icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--off-white); border-radius: 14px; color: var(--mid-gray); }
.press-download-placeholder__info { flex: 1; }
.press-download-placeholder__info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--dark-gray); }
.press-download-placeholder__info p { font-size: 14px; color: var(--mid-gray); font-weight: 400; line-height: 1.5; margin-bottom: 6px; }
.press-download-placeholder__badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); background: rgba(24,56,98,0.06); padding: 4px 14px; border-radius: 60px; }

@media (max-width: 768px) {
  .press-download-placeholder { flex-direction: column; text-align: center; gap: 12px; }
}

/* ===== NAME_JA (Katakana) ===== */
.leader-name-ja { font-family: 'IBM Plex Sans JP', sans-serif; font-size: 12px; color: var(--mid-gray); font-weight: 400; margin-top: 1px; margin-bottom: 2px; }
.people-collab-card .leader-name-ja { font-size: 11px; }
.leader-popup-name .leader-name-ja { font-size: 14px; margin-top: 2px; margin-bottom: 4px; }

@media (max-width: 480px) {
  .about-leaders-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   BTS "For Hub Members" box (also used on Bespoke Event Production)
   ============================================================ */
.bts-members { padding: 80px 0 40px; background: var(--off-white); }
.bts-members-card { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--light-gray); border-left: 4px solid var(--cyan); border-radius: var(--radius-lg); padding: 40px 44px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.bts-members-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(7,177,218,0.1); color: var(--cyan); padding: 6px 14px; border-radius: 60px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.bts-members-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.bts-members-card p { font-size: 15px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; margin-bottom: 14px; }
.bts-members-card p:last-of-type { margin-bottom: 20px; }
.bts-members-card a:not(.bts-members-link) { color: var(--blue); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(24,56,98,0.3); }
.bts-members-card a:not(.bts-members-link):hover { border-bottom-color: var(--blue); }
.bts-members-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; }
.bts-members-link:hover { color: var(--cyan); }

/* ============================================================
   BESPOKE EVENT PRODUCTION (bep-)
   ============================================================ */
.bep-need { padding: 100px 0; background: var(--white); }
.bep-need-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.bep-need-inner p { font-size: 17px; color: var(--dark-gray); line-height: 1.75; font-weight: 400; margin-bottom: 20px; }
.bep-need-punchline { font-size: 19px !important; color: var(--black) !important; font-weight: 500 !important; line-height: 1.6 !important; margin-top: 28px !important; padding: 24px 28px; background: var(--off-white); border-left: 3px solid var(--cyan); border-radius: 0 var(--radius) var(--radius) 0; }
.bep-need em { font-style: italic; color: var(--red); font-weight: 500; }

.bep-types { padding: 100px 0; background: var(--off-white); }
.bep-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bep-type-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.bep-type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bep-type-icon { font-size: 36px; margin-bottom: 16px; }
.bep-type-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.bep-type-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bep-handle { padding: 100px 0; background: var(--white); }
.bep-handle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bep-handle-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--light-gray); }
.bep-handle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bep-handle-icon { font-size: 32px; margin-bottom: 16px; }
.bep-handle-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.bep-handle-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }

.bep-cities { padding: 100px 0; background: var(--off-white); }
.bep-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
.bep-city-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px 36px; }
.bep-city-flag { font-size: 44px; margin-bottom: 18px; }
.bep-city-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--black); }
.bep-city-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }

.bep-planning { padding: 40px 0 80px; background: var(--off-white); }

.bep-why { padding: 100px 0; background: var(--white); }
.bep-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.bep-why-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s; }
.bep-why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bep-why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.bep-why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.bep-why-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }

/* Tablet 1024px */
@media (max-width: 1024px) {
  .bep-types-grid { grid-template-columns: repeat(2, 1fr); }
  .bep-handle-grid { grid-template-columns: repeat(2, 1fr); }
  .bep-why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .bts-members { padding: 56px 0 32px; }
  .bts-members-card { padding: 32px 24px; border-left-width: 3px; }
  .bts-members-card h3 { font-size: 19px; }

  .bep-need { padding: 64px 0; }
  .bep-need-punchline { font-size: 17px !important; padding: 20px 22px; }
  .bep-types, .bep-handle, .bep-cities, .bep-why { padding: 64px 0; }
  .bep-planning { padding: 24px 0 48px; }
  .bep-types-grid { grid-template-columns: 1fr; gap: 16px; }
  .bep-type-card { padding: 28px 24px; }
  .bep-handle-grid { grid-template-columns: 1fr; gap: 16px; }
  .bep-handle-card { padding: 28px 24px; }
  .bep-cities-grid { grid-template-columns: 1fr; gap: 20px; }
  .bep-city-card { padding: 32px 28px; }
  .bep-city-card h3 { font-size: 20px; }
  .bep-why-grid { grid-template-columns: 1fr; gap: 16px; }
  .bep-why-card { padding: 28px 24px; }
}

/* ============================================================
   MEMBERSHIP BENEFITS MATRIX
   ============================================================ */
.ms-matrix { padding: 100px 0; background: var(--off-white); }

/* Desktop version */
.matrix-desktop { display: block; }
.matrix-mobile { display: none; }
.matrix-scroll { overflow-x: auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 4px 24px rgba(0,0,0,0.04); -webkit-overflow-scrolling: touch; }
.matrix-table { width: 100%; min-width: 1100px; border-collapse: collapse; font-size: 13.5px; }
.matrix-table thead th { background: #183862; color: var(--white); padding: 18px 14px; text-align: center; font-size: 12px; font-weight: 700; line-height: 1.35; vertical-align: bottom; position: sticky; top: 0; z-index: 3; }
.matrix-table thead th:first-child { text-align: left; background: #183862; position: sticky; left: 0; z-index: 4; min-width: 240px; }
.matrix-th-featured { background: linear-gradient(135deg, #f06757 0%, #c22 100%) !important; }
.matrix-fee-row { background: #232338; color: var(--white); }
.matrix-fee-row td { padding: 14px 14px; text-align: center; font-weight: 700; font-size: 14px; color: var(--white); }
.matrix-fee-row td:first-child { text-align: left; position: sticky; left: 0; background: #232338; z-index: 2; font-weight: 600; color: rgba(255,255,255,0.85); }
.matrix-fee-row .matrix-td-featured { background: rgba(240,103,87,0.15); color: #ffb0b0; }

.matrix-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }

.matrix-table tbody td { padding: 12px 14px; border-bottom: 1px solid var(--light-gray); text-align: center; vertical-align: middle; color: var(--dark-gray); font-weight: 400; line-height: 1.5; }
.matrix-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--black); background: var(--off-white); position: sticky; left: 0; z-index: 1; min-width: 240px; border-right: 1px solid var(--light-gray); }
.matrix-table tbody td:first-child em { font-style: italic; color: var(--mid-gray); font-size: 12px; font-weight: 400; }
.matrix-table tbody td.dash { color: var(--mid-gray); opacity: 0.5; }
.matrix-td-featured { background: rgba(240,103,87,0.04); }
.matrix-boost { color: #229944; font-weight: 700; background: rgba(34,153,68,0.08); }
.matrix-cat-row td { background: linear-gradient(90deg, #f5f7fb 0%, #eef1f8 100%) !important; font-size: 13px; font-weight: 700; color: var(--blue) !important; text-transform: uppercase; letter-spacing: 1px; padding: 14px 18px !important; text-align: left !important; border-bottom: 2px solid var(--blue) !important; position: sticky; left: 0; }
.matrix-cat-num { display: inline-block; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: var(--white); text-align: center; line-height: 24px; font-size: 12px; font-weight: 800; margin-right: 10px; }
.matrix-table tbody tr:hover td { background: rgba(24,56,98,0.02); }
.matrix-table tbody tr:hover td.matrix-td-featured { background: rgba(240,103,87,0.06); }
.matrix-table tbody tr:hover td.matrix-boost { background: rgba(34,153,68,0.12); }

/* Mobile tier panels */
.matrix-tier-pills { display: none; }
.matrix-tier-panel { display: none; }

/* Notes */
.matrix-notes { max-width: 900px; margin: 40px auto 0; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 36px; }
.matrix-notes h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 16px; }
.matrix-notes ul { list-style: none; padding: 0; margin: 0; }
.matrix-notes li { font-size: 14px; color: var(--dark-gray); line-height: 1.7; font-weight: 400; padding: 10px 0; border-bottom: 1px solid var(--light-gray); }
.matrix-notes li:last-child { border-bottom: none; }
.matrix-notes li strong { color: var(--black); font-weight: 700; }
.matrix-boost-dot { display: inline-block; width: 10px; height: 10px; background: #229944; border-radius: 50%; vertical-align: middle; margin: 0 2px; }

/* Mobile 768px - switch to tier panels */
@media (max-width: 900px) {
  .matrix-desktop { display: none; }
  .matrix-mobile { display: block; }
  .matrix-tier-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; justify-content: center; }
  .matrix-tier-pill { background: var(--white); border: 1.5px solid var(--light-gray); color: var(--dark-gray); padding: 10px 14px; border-radius: 60px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; }
  .matrix-tier-pill:hover { border-color: var(--tier-color, var(--blue)); color: var(--black); }
  .matrix-tier-pill.active { background: var(--tier-color, var(--blue)); color: var(--white); border-color: var(--tier-color, var(--blue)); }
  .matrix-tier-pill.active .matrix-dot { background: var(--white) !important; }

  .matrix-tier-panel { display: none; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
  .matrix-tier-panel.active { display: block; }
  .matrix-panel-head { display: flex; align-items: center; gap: 14px; padding: 22px 24px; background: var(--off-white); border-bottom: 3px solid var(--tier-color, var(--blue)); }
  .matrix-panel-head .matrix-dot { width: 14px; height: 14px; margin-right: 0; flex-shrink: 0; }
  .matrix-panel-name { font-size: 18px; font-weight: 700; color: var(--black); }
  .matrix-panel-price { font-size: 14px; color: var(--dark-gray); font-weight: 500; margin-top: 2px; }
  .matrix-panel-cat { padding: 18px 24px; border-bottom: 1px solid var(--light-gray); }
  .matrix-panel-cat:last-child { border-bottom: none; }
  .matrix-panel-cat-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--light-gray); }
  .matrix-panel-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 14px; line-height: 1.5; }
  .matrix-panel-benefit { color: var(--dark-gray); font-weight: 400; flex: 1; }
  .matrix-panel-value { color: var(--black); font-weight: 600; text-align: right; flex: 0 0 45%; }
  .matrix-panel-row-dash .matrix-panel-value { color: var(--mid-gray); font-weight: 400; opacity: 0.6; }
  .matrix-panel-value-boost { color: #229944 !important; background: rgba(34,153,68,0.08); padding: 2px 8px; border-radius: 4px; }
}

@media (max-width: 480px) {
  .matrix-tier-pill { font-size: 12px; padding: 8px 12px; }
  .matrix-panel-head { padding: 18px 20px; }
  .matrix-panel-name { font-size: 16px; }
  .matrix-panel-cat { padding: 16px 20px; }
  .matrix-panel-value { flex: 0 0 50%; font-size: 13px; }
  .matrix-panel-benefit { font-size: 13px; }
  .matrix-notes { padding: 24px 22px; }
  .matrix-notes li { font-size: 13px; }
}

/* Hero mobile: show image better */
@media (max-width: 768px) {
  .ms-hero-bg { background-position: center 30%; }
}

/* ============================================================
   BUSINESS DESK – What You Can Ask Us (bd-ask)
   ============================================================ */
.bd-ask { padding: 100px 0; background: var(--off-white); }
.bd-ask-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bd-ask-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px 26px; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.bd-ask-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.07); }
.bd-ask-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.bd-ask-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray); margin-bottom: 12px; }
.bd-ask-q { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.5; margin-bottom: 12px; font-style: italic; padding-left: 14px; border-left: 3px solid var(--cyan); }
.bd-ask-a { font-size: 13.5px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; margin-top: auto; }

/* ============================================================
   BUSINESS DESK – How It Works (bd-how)
   ============================================================ */
.bd-how { padding: 100px 0; background: var(--white); }
.bd-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.bd-how-step { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.bd-how-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bd-how-num { font-size: 56px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 18px; letter-spacing: -1px; }
.bd-how-step h3 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.bd-how-step p { font-size: 14.5px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }

/* ============================================================
   BUSINESS DESK – Two Desks (bd-desks)
   ============================================================ */
.bd-desks { padding: 100px 0; background: var(--off-white); }
.bd-desks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1080px; margin: 0 auto; }
.bd-desk-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.bd-desk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.bd-desk-flag { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.bd-desk-card h3 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.bd-desk-lead { font-size: 14.5px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; margin-bottom: 24px; flex: 1; }
.bd-desk-contact { padding-top: 18px; border-top: 1px solid var(--light-gray); display: flex; flex-direction: column; gap: 4px; }
.bd-desk-contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray); }
.bd-desk-contact-value { font-size: 14px; color: var(--dark-gray); font-style: italic; font-weight: 400; }

/* ============================================================
   BUSINESS DESK – Tablet 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .bd-ask-grid { grid-template-columns: repeat(2, 1fr); }
  .bd-how-grid { grid-template-columns: 1fr; max-width: 640px; }
  .bd-network-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BUSINESS DESK – Mobile 768px
   ============================================================ */
@media (max-width: 768px) {
  .bd-ask { padding: 64px 0; }
  .bd-ask-grid { grid-template-columns: 1fr; gap: 16px; }
  .bd-ask-card { padding: 24px 22px; }
  .bd-ask-q { font-size: 14.5px; }
  .bd-ask-a { font-size: 13.5px; }

  .bd-how { padding: 64px 0; }
  .bd-how-grid { grid-template-columns: 1fr; gap: 16px; }
  .bd-how-step { padding: 28px 24px; }
  .bd-how-num { font-size: 44px; margin-bottom: 12px; }
  .bd-how-step h3 { font-size: 18px; }

  .bd-desks { padding: 64px 0; }
  .bd-desks-grid { grid-template-columns: 1fr; gap: 18px; }
  .bd-desk-card { padding: 28px 24px; }
  .bd-desk-card h3 { font-size: 20px; }

  .bd-network { padding: 64px 0; }
  .bd-network-grid { grid-template-columns: 1fr; gap: 16px; }
  .bd-network-card { padding: 28px 24px; }
  .bd-network-note { padding: 24px 22px; flex-direction: column; gap: 12px; margin-top: 24px; }
  .bd-network-note-icon { font-size: 22px; padding-top: 0; }
}

/* ===== M&A ADVISORY ===== */

/* Why now */
.ma-why { padding: 100px 0; background: var(--white); }
.ma-why-inner { max-width: 820px; margin: 0 auto; }
.ma-why-inner > .section-label { text-align: center; }
.ma-why-inner > .section-title { text-align: center; margin-bottom: 32px; }
.ma-why-inner p { font-size: 17px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; margin-bottom: 18px; }
.ma-why-inner em { font-style: italic; font-weight: 500; color: var(--black); }
.ma-why-punchline { font-size: 20px !important; color: var(--black) !important; font-weight: 600 !important; line-height: 1.55 !important; margin-top: 32px !important; padding: 26px 30px; background: var(--off-white); border-left: 3px solid var(--cyan); border-radius: 0 var(--radius) var(--radius) 0; text-align: left; }

/* Scenarios */
.ma-scenarios { padding: 100px 0; background: var(--off-white); }
.ma-scenarios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.ma-scenario-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.ma-scenario-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ma-scenario-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--light-gray); }
.ma-scenario-tag { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; }
.ma-scenario-flag { font-size: 18px; letter-spacing: 1px; }
.ma-scenario-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; color: var(--black); line-height: 1.3; }
.ma-scenario-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }
.ma-scenario-card em { font-style: italic; font-weight: 500; color: var(--black); }

/* Segment & limits */
.ma-segment { padding: 100px 0; background: var(--white); }
.ma-segment-inner { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.ma-segment-inner p { font-size: 17px; color: var(--dark-gray); line-height: 1.8; font-weight: 400; margin-bottom: 18px; text-align: left; }
.ma-segment-inner p strong { color: var(--black); font-weight: 700; }
.ma-segment-cards { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; }
.ma-segment-card { padding: 28px 30px; border-radius: var(--radius-lg); }
.ma-segment-card--primary { background: linear-gradient(135deg, #0F2447 0%, #1F4670 100%); color: var(--white); }
.ma-segment-card--secondary { background: var(--off-white); border: 1px solid var(--light-gray); }
.ma-segment-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.ma-segment-card--primary .ma-segment-card-label { color: var(--cyan); }
.ma-segment-card--secondary .ma-segment-card-label { color: var(--blue); }
.ma-segment-card-value { font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.ma-segment-card--primary .ma-segment-card-value { color: var(--white); }
.ma-segment-card--secondary .ma-segment-card-value { color: var(--black); font-size: 16px; line-height: 1.4; }
.ma-segment-card-jp { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

/* How we work */
.ma-how { padding: 100px 0; background: var(--off-white); }
.ma-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.ma-how-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; }
.ma-how-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ma-how-num { font-size: 13px; font-weight: 700; color: var(--cyan); letter-spacing: 1.5px; margin-bottom: 14px; }
.ma-how-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--black); line-height: 1.3; }
.ma-how-card p { font-size: 14px; color: var(--dark-gray); font-weight: 400; line-height: 1.7; }
.ma-how-card--wide { grid-column: span 1; }

/* Team / partners */
.ma-team { padding: 100px 0; background: var(--white); }
.ma-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 56px auto 0; }
.ma-team-card { background: var(--off-white); border: 1px dashed var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; }
.ma-team-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; color: var(--black); }
.ma-team-card p { font-size: 15px; color: var(--dark-gray); font-weight: 400; line-height: 1.75; }

/* CTA & first step */
.ma-cta { padding: 100px 0; background: linear-gradient(135deg, #1A1A1E 0%, #0F2447 100%); color: var(--white); text-align: center; }
.ma-cta-inner { max-width: 700px; margin: 0 auto; }
.ma-cta-inner > .section-label { color: var(--cyan); }
.ma-cta-inner h2 { color: var(--white); font-size: clamp(28px, 3vw, 36px); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.ma-cta-inner > p { color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 400; line-height: 1.75; margin-bottom: 32px; }
.ma-cta-badges { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.ma-cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.ma-cta-badge svg { color: var(--cyan); }

/* Disclaimer */
.ma-disclaimer { padding: 48px 0; background: var(--black); }
.ma-disclaimer-inner { max-width: 900px; margin: 0 auto; padding: 24px 28px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.ma-disclaimer-inner p { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .ma-scenarios-grid { grid-template-columns: 1fr; }
  .ma-segment-cards { grid-template-columns: 1fr; }
  .ma-how-grid { grid-template-columns: repeat(2, 1fr); }
  .ma-team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ma-why, .ma-scenarios, .ma-segment, .ma-how, .ma-team, .ma-cta { padding: 64px 0; }
  .ma-why-inner p { font-size: 16px; }
  .ma-why-punchline { font-size: 17px !important; padding: 22px 24px; }
  .ma-scenario-card, .ma-team-card { padding: 28px 24px; }
  .ma-scenario-card h3 { font-size: 18px; }
  .ma-segment-card { padding: 24px 22px; }
  .ma-how-grid { grid-template-columns: 1fr; gap: 16px; }
  .ma-how-card { padding: 28px 24px; }
  .ma-cta-badges { gap: 10px; }
  .ma-cta-badge { padding: 7px 14px; font-size: 12px; }
}

/* ===== MEMBERSHIP V4 — MULTI-PAGE STRUCTURE ===== */

/* Landing: three-path cards */
.ms-paths { padding: 100px 0; background: var(--white); }
.ms-paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.ms-path-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 28px; display: flex; flex-direction: column; transition: all 0.3s; text-decoration: none; color: inherit; }
.ms-path-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); border-color: var(--blue); }
.ms-path-card .ms-path-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--mid-gray); margin-bottom: 16px; }
.ms-path-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; line-height: 1.3; color: var(--black); }
.ms-path-card > p { font-size: 15px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin-bottom: 24px; flex: 1; }
.ms-path-price { font-size: 14px; color: var(--blue); font-weight: 700; margin-bottom: 16px; }
.ms-path-card .ms-path-cta { font-size: 14px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; }
.ms-path-card:hover .ms-path-cta { color: var(--red); }

/* Persona-driven hero leads (Professionals) */
.ms-persona-leads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.ms-persona-lead { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; }
.ms-persona-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 14px; }
.ms-persona-lead h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; line-height: 1.4; color: var(--black); }
.ms-persona-lead p { font-size: 14px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

/* Outcomes (Professionals) */
.ms-outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.ms-outcome-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; }
.ms-outcome-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(7,177,218,0.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.ms-outcome-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
.ms-outcome-body p { font-size: 14px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

/* How it works (Institutions) — numbered steps */
.ms-steps { padding: 100px 0; background: var(--off-white); }
.ms-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; position: relative; }
.ms-step-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--light-gray); position: relative; }
.ms-step-num { font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 18px; opacity: 0.9; letter-spacing: -1px; }
.ms-step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.ms-step-card p { font-size: 14px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

/* Closing CTA cards */
.ms-closing-cta { padding: 90px 0; background: var(--white); }
.ms-closing-cta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.ms-closing-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; }
.ms-closing-card--primary { background: linear-gradient(135deg, #183862 0%, #2a4a78 100%); border: none; color: var(--white); }
.ms-closing-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.ms-closing-card > p { font-size: 15px; line-height: 1.65; font-weight: 400; margin-bottom: 24px; flex: 1; }
.ms-closing-card--primary > p { color: rgba(255,255,255,0.75); }
.ms-closing-card:not(.ms-closing-card--primary) > p { color: var(--dark-gray); }

/* What-the-Hub-is-not (Professionals filter section) */
.ms-not { padding: 80px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0F2447 60%, #1a1a1e 100%); color: var(--white); }
.ms-not-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ms-not-inner .section-label { color: var(--cyan); }
.ms-not-inner h2 { color: var(--white); font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 22px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px; }
.ms-not-inner p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.75; font-weight: 400; }

/* Founders 2026 inline banner */
.founders-banner { padding: 80px 0; background: linear-gradient(135deg, #1a1a1e 0%, #0d1b2a 50%, #1a1a1e 100%); color: var(--white); }
.founders-banner-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; padding: 44px 48px; background: rgba(255,255,255,0.03); border: 1px solid rgba(7,177,218,0.18); border-radius: var(--radius-lg); position: relative; }
.founders-banner-text .kicker { margin-bottom: 16px; }
.founders-banner-text h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; margin-bottom: 14px; line-height: 1.2; }
.founders-banner-text p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 400; }
.founders-banner-perks { display: flex; flex-direction: column; gap: 10px; }
.founders-banner-perk { font-size: 14px; color: rgba(255,255,255,0.85); display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06); }
.fbp-check { flex-shrink: 0; color: var(--cyan); font-weight: 700; }
.founders-banner-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.founders-banner-deadline { font-size: 14px; color: var(--cyan); font-weight: 600; letter-spacing: 0.5px; }

/* Companies tiles (B.2 — "What You Get") - reuse ms-why-* classes with red accent variant */
.ms-tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.ms-tile { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.3s; }
.ms-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.ms-tile-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ms-tile h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; color: var(--black); }
.ms-tile p { font-size: 14px; color: var(--dark-gray); line-height: 1.6; font-weight: 400; }

/* Helper / pricing card (Institutions one-tier card) */
.ms-single-tier { padding: 80px 0; background: var(--white); }
.ms-single-tier-card { max-width: 540px; margin: 0 auto; background: linear-gradient(135deg, #183862 0%, #2a4a78 100%); color: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; text-align: left; box-shadow: 0 20px 50px rgba(24,56,98,0.18); }
.ms-single-tier-card .tier-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); margin-bottom: 14px; display: block; }
.ms-single-tier-card .tier-price { font-size: 44px; font-weight: 900; color: var(--white); margin-bottom: 8px; display: block; line-height: 1; }
.ms-single-tier-card .tier-price-period { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.ms-single-tier-card .tier-includes { list-style: none; padding: 0; margin-bottom: 32px; }
.ms-single-tier-card .tier-includes li { font-size: 14px; color: rgba(255,255,255,0.85); padding: 9px 0; padding-left: 26px; position: relative; line-height: 1.55; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ms-single-tier-card .tier-includes li:last-child { border-bottom: none; }
.ms-single-tier-card .tier-includes li::before { content: '\2713'; position: absolute; left: 0; top: 9px; color: var(--cyan); font-weight: 700; }

/* Additional categories (Observer / Program Partner section on /companies) */
.ms-additional { padding: 80px 0; background: var(--off-white); }
.ms-additional-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.ms-additional-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; }
.ms-additional-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; line-height: 1.35; }
.ms-additional-card > p { font-size: 14px; color: var(--dark-gray); line-height: 1.65; font-weight: 400; margin-bottom: 22px; flex: 1; }

/* RESPONSIVE — multi-page membership */
@media (max-width: 1024px) {
  .ms-paths-grid { grid-template-columns: 1fr; max-width: 560px; }
  .ms-persona-leads { grid-template-columns: 1fr; max-width: 560px; }
  .ms-outcomes-grid { grid-template-columns: 1fr; }
  .ms-steps-grid { grid-template-columns: 1fr; max-width: 560px; }
  .ms-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-additional-grid { grid-template-columns: 1fr; }
  .founders-banner-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
}
@media (max-width: 720px) {
  .ms-tiles-grid { grid-template-columns: 1fr; }
  .ms-closing-cta-grid { grid-template-columns: 1fr; }
  .ms-single-tier-card { padding: 36px 28px; }
  .ms-single-tier-card .tier-price { font-size: 36px; }
  .founders-banner-inner { padding: 28px 22px; }
  .founders-banner-foot { flex-direction: column; align-items: stretch; }
  .ms-outcome-card { flex-direction: column; gap: 14px; }
}

/* ===== MEMBERSHIP V4.1 — Round 1 visual tweaks ===== */

/* Hero pill CTAs (landing page) — high-contrast, larger, red accent */
.ms-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.ms-hero-actions--three { gap: 14px; }
.ms-hero-pill { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--red); color: var(--white); border-radius: 60px; font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.3px; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 6px 20px rgba(240,103,87,0.35); border: 2px solid transparent; }
.ms-hero-pill:hover { background: var(--white); color: var(--red); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.22); }
.ms-hero-pill-arrow { font-size: 18px; transition: transform 0.25s; }
.ms-hero-pill:hover .ms-hero-pill-arrow { transform: translateX(4px); }

/* Dark variant of "Not Just Another Chamber" differ section */
.ms-differ--dark { background: linear-gradient(135deg, #0a1628 0%, #0F2447 60%, #0a1628 100%); color: var(--white); position: relative; overflow: hidden; }
.ms-differ--dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(7,177,218,0.06) 0%, transparent 60%); pointer-events: none; }
.ms-differ--dark .container { position: relative; z-index: 1; }
.ms-differ--dark .ms-differ-text p { color: rgba(255,255,255,0.7); }
.ms-differ--dark .ms-differ-vs { color: rgba(255,255,255,0.5); }
.ms-differ--dark .ms-differ-box--agency { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
.ms-differ--dark .ms-differ-box--agency .ms-differ-box-label { color: rgba(255,255,255,0.55); }
.ms-differ--dark .ms-differ-box--agency .ms-differ-box-meta { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.08); }
.ms-differ--dark .ms-differ-box--agency .ms-differ-box-list li { color: rgba(255,255,255,0.7); }
.ms-differ--dark .ms-differ-box--agency .ms-differ-box-list li::before { color: rgba(255,255,255,0.4); }
.ms-differ--dark .ms-differ-box--hub { background: rgba(7,177,218,0.08); border-color: rgba(7,177,218,0.25); }
.ms-differ--dark .ms-differ-box--hub .ms-differ-box-label { color: var(--cyan); }
.ms-differ--dark .ms-differ-box--hub .ms-differ-box-meta { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); }
.ms-differ--dark .ms-differ-box--hub .ms-differ-box-list li { color: rgba(255,255,255,0.85); }
.ms-differ--dark .ms-differ-box--hub .ms-differ-box-list li::before { color: var(--cyan); }

/* Three Paths — image hero variant */
.ms-paths-grid--hero { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1120px; margin: 0 auto; }
.ms-path-hero { position: relative; aspect-ratio: 4 / 5; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; background-size: cover; background-position: center; text-decoration: none; display: block; transition: transform 0.35s ease, box-shadow 0.35s ease; background-color: #0a1628; }
.ms-path-hero:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.25); }
.ms-path-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.35) 0%, rgba(10,22,40,0.55) 55%, rgba(10,22,40,0.92) 100%); transition: background 0.35s ease; }
.ms-path-hero:hover .ms-path-hero-overlay { background: linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.50) 55%, rgba(10,22,40,0.95) 100%); }
.ms-path-hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 32px 28px; color: var(--white); }
.ms-path-hero-label { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.1; }
.ms-path-hero-foot { display: flex; flex-direction: column; gap: 14px; }
.ms-path-hero-price { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.3px; }
.ms-path-hero-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); transition: gap 0.25s ease; }
.ms-path-hero:hover .ms-path-hero-cta { gap: 14px; }

/* Comparison table — port the working v0.9.74 styles */
.ms-compare { padding: 100px 0; background: var(--white); }
.ms-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--light-gray); border-radius: var(--radius-lg); }
.ms-compare-table { width: 100%; min-width: 880px; border-collapse: separate; border-spacing: 0; font-size: 13.5px; }
.ms-compare-table thead th { padding: 22px 14px 18px; vertical-align: top; background: var(--off-white); border-bottom: 1px solid var(--light-gray); text-align: center; }
.ms-compare-table thead th.ms-compare-th-benefit { text-align: left; min-width: 280px; }
.ms-compare-table thead th.ms-compare-th-featured { background: rgba(240,103,87,0.04); }
.ms-compare-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.ms-compare-tier-name { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--black); display: inline-block; vertical-align: middle; }
.ms-compare-tier-price { display: block; font-size: 12px; font-weight: 600; color: var(--blue); margin-top: 4px; }
.ms-compare-table tbody td { padding: 13px 14px; text-align: center; color: var(--dark-gray); border-bottom: 1px solid var(--light-gray); }
.ms-compare-table tbody td:first-child { text-align: left; color: var(--black); font-weight: 500; }
.ms-compare-table tbody tr:last-child td { border-bottom: none; }
.ms-compare-table tbody tr:hover { background: rgba(24,56,98,0.025); }
.ms-compare-table tbody td.dash { color: var(--mid-gray); }
.ms-compare-cat-row { background: var(--off-white); }
.ms-compare-cat-row td { padding: 14px 16px !important; font-family: var(--font-display); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); border-bottom: 2px solid var(--light-gray) !important; }
.ms-compare-cat-num { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 4px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; margin-right: 10px; }
.ms-compare-table thead th.ms-compare-th-featured,
.ms-compare-table tbody td.ms-compare-td-featured { box-shadow: inset 1px 0 0 rgba(240,103,87,0.18), inset -1px 0 0 rgba(240,103,87,0.18); background: rgba(240,103,87,0.02); }
.ms-compare-note { font-size: 12.5px; color: var(--mid-gray); padding: 18px 22px; line-height: 1.65; background: var(--off-white); border-top: 1px solid var(--light-gray); margin: 0; }
.ms-compare-note strong { color: var(--dark-gray); }

@media (max-width: 1024px) {
  .ms-paths-grid--hero { grid-template-columns: 1fr; max-width: 480px; }
  .ms-path-hero { aspect-ratio: 16 / 10; min-height: 280px; }
}
@media (max-width: 720px) {
  .ms-hero-pill { padding: 14px 22px; font-size: 14px; }
  .ms-path-hero-content { padding: 24px 22px; }
  .ms-path-hero-label { font-size: 20px; letter-spacing: 1px; }
}
