/* =========================================================
   VGBA — Viet Global Business Alliance
   Premium design system
   ========================================================= */

:root {
  --navy: #0B1F3A;
  --navy-700: #122A4A;
  --navy-600: #1B3A5C;
  --blue: #0D6EFD;
  --blue-soft: #5BA6FF;
  --gold: #D4A63A;
  --gold-soft: #E8C766;
  --red: #E53935;
  --light: #F2F4F7;
  --white: #FFFFFF;

  --ink: #0B1F3A;
  --muted: #5A6B82;
  --muted-2: #8493A8;
  --line: #E3E8F0;
  --line-soft: #EEF1F6;

  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(11, 31, 58, .06);
  --shadow-sm: 0 4px 14px rgba(11, 31, 58, .06);
  --shadow: 0 14px 40px rgba(11, 31, 58, .10);
  --shadow-lg: 0 30px 70px rgba(11, 31, 58, .16);

  --container: 1200px;
  --gradient-gold: linear-gradient(135deg, #E8C766, #C4901F);
  --gradient-blue: linear-gradient(135deg, #5BA6FF, #0D6EFD);
  --gradient-navy: linear-gradient(160deg, #0B1F3A 0%, #122A4A 60%, #0D2748 100%);

  --font: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: "Sora", "Manrope", var(--font);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--gradient-navy); color: #D7E2F2; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold); display: inline-block; }
.section--navy .eyebrow { color: var(--gold-soft); }

.display { font-size: clamp(2.4rem, 5.2vw, 4rem); }
.h-lead { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 56ch; }
.section--navy .lead { color: #AFC1DC; }
.text-grad { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-grad-blue { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #0F2A4D; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gradient-gold); color: #2A1E00; box-shadow: 0 10px 24px rgba(196,144,31,.32); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(196,144,31,.42); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
/* ghost button on dark backgrounds — light border + white text so it isn't faint */
.cta-band .btn--ghost, .section--navy .btn--ghost, .plan--featured .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn--ghost:hover, .section--navy .btn--ghost:hover, .plan--featured .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft); transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.96); border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: "Sora", var(--font); font-weight: 800; font-size: 22px; letter-spacing: .04em; color: var(--navy); }
.brand__name .v { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__alliance { font-family: "Sora", var(--font); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; margin-left: 8px; vertical-align: 2px; }
.brand__tag { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; font-weight: 600; white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__links a {
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: #2C3E59;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav__links a:hover { color: var(--blue); background: rgba(13,110,253,.08); }
.nav__links a.active, .nav__links .nav__top.active {
  color: var(--blue); font-weight: 700;
  background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(13,110,253,.06));
  box-shadow: inset 0 0 0 1px rgba(13,110,253,.16);
}

/* dropdown / mega-menu */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__top { display: inline-flex; align-items: center; gap: 5px; }
.nav__top .cv { width: 14px; height: 14px; opacity: .5; transition: transform .25s var(--ease); }
.nav__item:hover .nav__top .cv { transform: rotate(180deg); }
.nav__item::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav__dd {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 120;
}
.nav__item:hover .nav__dd, .nav__item:focus-within .nav__dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dd a { padding: 11px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; color: #2C3E59; white-space: nowrap; }
.nav__dd a:hover { background: rgba(13,110,253,.08); color: var(--blue); }
.nav__dd a.active { background: rgba(13,110,253,.10); color: var(--blue); }

.nav__right { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__cta { padding: 11px 20px; font-size: 14px; }
.lang-switch { display: inline-flex; align-items: center; background: var(--light); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; padding: 6px 12px; border-radius: 999px; font-size: 13px;
  font-weight: 600; color: var(--muted); transition: all .2s;
}
.lang-switch button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-xs); }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 74px 0 0; background: #fff; z-index: 99; transform: translateX(100%);
  transition: transform .35s var(--ease); padding: 28px 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { padding: 16px 8px; font-size: 19px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .mm-sub { padding-left: 24px; font-size: 16px; font-weight: 500; color: var(--muted); }
.mobile-menu .mm-sub::before { content: "↳"; margin-right: 8px; color: var(--gold); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 96px; background:
   radial-gradient(60% 80% at 85% 10%, rgba(13,110,253,.06), transparent 60%),
   radial-gradient(50% 60% at 8% 90%, rgba(212,166,58,.07), transparent 60%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 26px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,166,58,.18); }
.hero h1 { font-size: clamp(1.7rem, 3.1vw, 2.5rem); line-height: 1.38; font-weight: 800; letter-spacing: -.01em; margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.hero__meta { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.hero__meta .m { display: flex; flex-direction: column; }
.hero__meta .m b { font-family: "Sora", var(--font); font-size: 1.5rem; color: var(--navy); }
.hero__meta .m span { font-size: 13px; color: var(--muted); }

/* ---------- Network visual ---------- */
.netviz { position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin-left: auto; }
.netviz__globe { position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(60% 60% at 38% 32%, #16335A, #0B1F3A 70%);
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(0,0,0,.4); overflow: hidden; }
.netviz__globe::before, .netviz__globe::after { content: ""; position: absolute; inset: 0; border-radius: 50%; }
.netviz svg.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-node { fill: var(--gold-soft); }
.net-pulse { transform-origin: center; animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0%,100% { opacity: .35; r: 3; } 50% { opacity: 1; r: 5; } }
.float-card {
  position: absolute; background: rgba(255,255,255,.96); border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
  font-size: 13px; backdrop-filter: blur(6px); animation: floaty 6s ease-in-out infinite;
}
.float-card b { color: var(--navy); font-size: 13.5px; display: block; }
.float-card span { color: var(--muted); font-size: 11.5px; }
.float-card .fc-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.fc-icon.gold { background: rgba(212,166,58,.14); color: var(--gold); }
.fc-icon.blue { background: rgba(13,110,253,.12); color: var(--blue); }
.fc-icon.green { background: rgba(22,163,74,.12); color: #16A34A; }
.fc-icon.red { background: rgba(229,57,53,.12); color: var(--red); }
.float-card svg { width: 17px; height: 17px; }
.fc-1 { top: 6%; left: -4%; animation-delay: 0s; }
.fc-2 { top: 30%; right: -8%; animation-delay: 1.2s; }
.fc-3 { bottom: 22%; left: -8%; animation-delay: .6s; }
.fc-4 { bottom: 2%; right: 2%; animation-delay: 1.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee / logos strip ---------- */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; }
.strip__label { text-align: center; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 600; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; align-items: center; }
.strip__row span { font-weight: 700; color: #9AA8BC; font-size: 16px; letter-spacing: .02em; font-family: "Sora", var(--font); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--light); color: var(--navy); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin: 0; }
.card--feature .card__icon { background: var(--gradient-navy); color: var(--gold-soft); }

.icon-chip { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.icon-chip svg { width: 23px; height: 23px; }
.card .icon-chip { margin-bottom: 18px; }
.chip-navy { background: var(--gradient-navy); color: #fff; }
.chip-gold { background: rgba(212,166,58,.14); color: var(--gold); }
.chip-blue { background: rgba(13,110,253,.12); color: var(--blue); }
.chip-red { background: rgba(229,57,53,.10); color: var(--red); }

/* feature list rows */
.feature-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); }
.feature-row:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.feature-row h3 { font-size: 1.08rem; margin-bottom: 5px; }
.feature-row p { font-size: 14px; margin: 0; }

/* ---------- Pill tag ---------- */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.tag svg { width: 14px; height: 14px; }
a.tag { transition: opacity .2s; }
a.tag:hover { opacity: .75; }
.match-pill svg { width: 15px; height: 15px; }
.tag-gold { background: rgba(212,166,58,.14); color: #9A7012; }
.tag-blue { background: rgba(13,110,253,.10); color: var(--blue); }
.tag-navy { background: rgba(11,31,58,.07); color: var(--navy); }
.tag-soon { background: rgba(90,107,130,.12); color: var(--muted); }
.tag-live { background: rgba(22,163,74,.12); color: #16A34A; }

/* ---------- AI dashboard ---------- */
.dash { background: var(--gradient-navy); border-radius: var(--radius-xl); padding: 34px; color: #cfe; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.dash::after { content: ""; position: absolute; top: -40%; right: -10%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(13,110,253,.25), transparent 70%); }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; position: relative; }
.dash__head .t { color: #fff; font-weight: 700; font-family: "Sora", var(--font); }
.dash__head .live { font-size: 11px; color: #7FE3B0; display: inline-flex; align-items: center; gap: 6px; }
.dash__head .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
.bar { margin-bottom: 18px; position: relative; }
.bar__top { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; color: #C3D3EC; }
.bar__top b { color: #fff; font-family: "Sora", var(--font); }
.bar__track { height: 8px; background: rgba(255,255,255,.10); border-radius: 999px; overflow: hidden; }
.bar__fill { height: 100%; border-radius: 999px; width: 0; transition: width 1.3s var(--ease); background: var(--gradient-gold); }
.bar__fill.blue { background: var(--gradient-blue); }

/* ---------- Chapters map ---------- */
.chapter { display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); }
.chapter:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.chapter__flag { width: 42px; height: 42px; border-radius: 11px; background: var(--light); display: grid; place-items: center; font-size: 20px; }
.chapter h3 { font-size: 1.05rem; margin: 0; }
.chapter .loc { font-size: 13px; color: var(--muted); }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.statband .s { text-align: center; }
.statband .s b { display: block; font-family: "Sora", var(--font); font-size: clamp(1.6rem,3vw,2.3rem); color: #fff; }
.statband .s span { font-size: 13px; color: #9FB3D1; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gradient-navy); border-radius: var(--radius-xl); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(212,166,58,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,3.4vw,2.7rem); }
.cta-band p { color: #AFC1DC; max-width: 56ch; margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Page hero ---------- */
.page-hero { padding: 72px 0 56px; background:
  radial-gradient(50% 70% at 90% 0%, rgba(13,110,253,.05), transparent 60%); }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 18px; }
.breadcrumb { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a:hover { color: var(--navy); }

/* ---------- Directory ---------- */
.toolbar { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.search-box { flex: 1; min-width: 260px; position: relative; }
.search-box svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--muted-2); }
.search-box input { width: 100%; padding: 14px 16px 14px 46px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; outline: none; transition: .2s; background: #fff; }
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,110,253,.10); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding: 14px 40px 14px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14.5px; background: #fff; color: var(--navy); outline: none; cursor: pointer; font-weight: 500; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select-wrap select:focus { border-color: var(--blue); }

.company-card { display: flex; flex-direction: column; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .3s var(--ease); }
.company-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.company-card__top { display: flex; gap: 14px; align-items: center; }
.company-logo { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; font-family: "Sora", var(--font); font-weight: 800; color: #fff; font-size: 19px; flex: none; }
.company-card h3 { font-size: 1.12rem; margin: 0; }
.company-card .ind { font-size: 13px; color: var(--blue); font-weight: 600; }
.company-card .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.company-card .lf { font-size: 13.5px; color: var(--muted); background: var(--bg-alt); border-radius: 10px; padding: 11px 14px; }
.company-card .lf b { color: var(--navy); font-weight: 600; }
.company-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.match-pill { font-size: 12.5px; font-weight: 600; color: #16A34A; display: inline-flex; align-items: center; gap: 6px; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }

/* ---------- Insights ---------- */
.cat-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-row button { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13.5px; font-weight: 600; color: var(--muted); transition: .2s; }
.cat-row button.active, .cat-row button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s var(--ease); display: flex; flex-direction: column; }
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article__img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.article__img .ph { position: absolute; inset: 0; }
.article__img .cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--navy); font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.article__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article__body h3 { font-size: 1.12rem; margin: 0; line-height: 1.3; }
.article__meta { margin-top: auto; font-size: 12.5px; color: var(--muted-2); display: flex; gap: 12px; align-items: center; }

.feature-article { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; margin-bottom: 40px; }
.feature-article .fa-img { min-height: 320px; position: relative; }
.feature-article .fa-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.feature-article .fa-body h2 { font-size: clamp(1.4rem,2.4vw,2rem); }

/* ---------- Events ---------- */
.event-card { display: grid; grid-template-columns: 88px 1fr auto; gap: 22px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .3s var(--ease); }
.event-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.event-date { text-align: center; background: var(--bg-alt); border-radius: 13px; padding: 12px 0; }
.event-date .mo { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.event-date .dy { font-family: "Sora", var(--font); font-size: 1.5rem; color: var(--navy); font-weight: 800; }
.event-info h3 { font-size: 1.12rem; margin: 0 0 6px; }
.event-info .det { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.event-info .det span { display: inline-flex; align-items: center; gap: 6px; }
.event-info .det svg { width: 15px; height: 15px; color: var(--muted-2); }

/* ---------- Membership ---------- */
.plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; transition: .3s var(--ease); position: relative; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { border-color: transparent; background: var(--gradient-navy); color: #C9D8EF; box-shadow: var(--shadow-lg); }
.plan--featured h3, .plan--featured .price { color: #fff; }
.plan--featured .plan__feat li { color: #C9D8EF; }
.plan__badge { display: inline-block; align-self: flex-start; background: var(--gradient-gold); color: #2A1E00; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.plan__badge--ph { visibility: hidden; }
.plan h3 { font-size: 1.4rem; margin-bottom: 6px; min-height: 2.5em; }
.plan .ptag { font-size: 13.5px; margin-bottom: 22px; min-height: 4.3em; }
.plan--featured .ptag { color: #A9C0E0; }
.price { font-family: "Sora", var(--font); font-size: 1.5rem; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.price small { font-size: 13px; color: var(--muted); font-weight: 500; }
.plan--featured .price small { color: #A9C0E0; }
.plan__feat { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 13px; }
.plan__feat li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.plan__feat li svg { width: 19px; height: 19px; flex: none; color: var(--gold); margin-top: 1px; }
.plan--featured .plan__feat li svg { color: var(--gold-soft); }
.plan .btn { margin-top: auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-size: 16px;
  font-family: inherit; outline: none; transition: .2s; background: #fff; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,110,253,.10); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 12px; }
.contact-aside { background: var(--gradient-navy); border-radius: var(--radius-lg); padding: 38px; color: #C9D8EF; }
.contact-aside h3 { color: #fff; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-line .ci { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; color: var(--gold-soft); }
.contact-line .ci svg { width: 20px; height: 20px; }
.contact-line b { color: #fff; display: block; font-size: 14.5px; }
.contact-line span { font-size: 13.5px; color: #A9C0E0; }
.form-success { display: none; background: rgba(22,163,74,.10); border: 1px solid rgba(22,163,74,.3); color: #15803D; padding: 16px 18px; border-radius: 12px; font-size: 14.5px; font-weight: 500; margin-bottom: 22px; }
.form-success.show { display: block; }
.form-error { display: none; background: rgba(229,57,53,.08); border: 1px solid rgba(229,57,53,.3); color: #B71C1C; padding: 16px 18px; border-radius: 12px; font-size: 14.5px; font-weight: 500; margin-bottom: 22px; }
.form-error.show { display: block; }
.lbl-opt { font-weight: 400; color: var(--muted-2); font-size: 12px; }

/* ---------- Profile cards (network) ---------- */
.profile { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; transition: .3s var(--ease); }
.profile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.profile .av { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: "Sora", var(--font); font-weight: 800; color: #fff; font-size: 26px; }
.profile h3 { font-size: 1.05rem; margin: 0 0 3px; }
.profile .role { font-size: 13px; color: var(--blue); font-weight: 600; }
.profile .co { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9FB3D1; padding: 72px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-footer .brand__name { color: #fff; }
.site-footer .fdesc { font-size: 14px; color: #8FA6C6; max-width: 34ch; margin: 18px 0 22px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; margin-bottom: 18px; font-family: var(--font); font-weight: 700; }
.footer-col a { display: block; font-size: 14px; color: #9FB3D1; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: .2s; }
.social a:hover { background: var(--blue); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7E96B8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Vision roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 8px; }
.roadmap::before { content: ""; position: absolute; top: 56px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%); opacity: .35; }
.road-stop { position: relative; padding-top: 92px; }
.road-stop::before { content: ""; position: absolute; top: 48px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--gold); box-shadow: 0 0 0 5px rgba(212,166,58,.14); }
.road-stop .yr { position: absolute; top: 0; left: 0; font-family: "Sora", var(--font); font-weight: 800; font-size: 1.6rem; color: var(--navy); line-height: 1; }
.road-stop .rt { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 12px; display: block; }
.road-chip { display: block; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 10px; transition: .3s var(--ease); }
.road-chip:hover { border-color: transparent; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.road-chip.accent { background: var(--gradient-navy); color: #fff; border-color: transparent; }

.mission { text-align: center; margin-top: 72px; }
.mission .ml { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.mission .mline { font-family: "Sora", var(--font); font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.5; color: var(--navy); }
.mission .mline span { display: block; }
.mission .mline .g { color: var(--gold); }

/* ---------- Value flow ---------- */
.flow { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 560px; margin: 0 auto; }
.flow-step { width: 100%; display: flex; align-items: center; gap: 18px; padding: 20px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-xs); transition: .3s var(--ease); }
.flow-step:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.flow-step .n { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-family: "Sora", var(--font); font-weight: 800; color: #fff; flex: none; background: var(--gradient-navy); }
.flow-step.gold .n { background: var(--gradient-gold); color: #2A1E00; }
.flow-step h3 { margin: 0; font-size: 1.05rem; }
.flow-step p { margin: 2px 0 0; font-size: 13.5px; }
.flow-arrow { width: 2px; height: 26px; background: linear-gradient(var(--blue), transparent); position: relative; }
.flow-arrow::after { content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 8px; height: 8px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }

/* ---------- Ecosystem hub ---------- */
.ecohub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.eco-node { display: flex; flex-direction: column; gap: 8px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: .3s var(--ease); min-height: 118px; justify-content: center; }
.eco-node:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.eco-node .ei { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--light); color: var(--navy); }
.eco-node .ei svg { width: 20px; height: 20px; }
.eco-node b { font-size: 14.5px; color: var(--navy); font-family: "Sora", var(--font); }
.eco-center { background: var(--gradient-navy); border: none; align-items: center; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.eco-center img { width: 56px; height: 56px; }
.eco-center b { color: #fff; font-size: 1.4rem; letter-spacing: .04em; }
.eco-center span { color: var(--gold-soft); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Org chart ---------- */
.org { display: flex; flex-direction: column; align-items: center; }
.org-box { padding: 16px 28px; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-family: "Sora", var(--font); font-weight: 700; color: var(--navy); box-shadow: var(--shadow-xs); text-align: center; }
.org-box.lead { background: var(--gradient-navy); color: #fff; border: none; box-shadow: var(--shadow); }
.org-box .sub { display: block; font-family: var(--font); font-weight: 500; font-size: 12px; color: var(--muted); margin-top: 2px; }
.org-conn { width: 2px; height: 30px; background: var(--line); }
.org-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.org-row .org-box { font-size: 14px; padding: 13px 20px; }
.org-chip { padding: 9px 16px; border-radius: 999px; background: var(--light); font-weight: 600; font-size: 13px; color: var(--navy); }
.org-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin: 6px 0; }

/* ---------- Founding members ---------- */
.found-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.found-cohort { background: var(--gradient-navy); border-radius: var(--radius-lg); padding: 34px; color: #C9D8EF; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.found-cohort::after { content: ""; position: absolute; top: -30%; right: -10%; width: 55%; height: 120%; background: radial-gradient(circle, rgba(212,166,58,.22), transparent 70%); }
.found-cohort > * { position: relative; }
.found-badge-lg { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: var(--gradient-gold); color: #2A1E00; font-weight: 700; font-size: 13px; margin-bottom: 18px; }
.found-badge-lg svg { width: 16px; height: 16px; }
.found-cohort h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.found-cohort .lim { color: var(--gold-soft); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.found-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.found-benefits li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: #C9D8EF; }
.found-benefits li svg { width: 19px; height: 19px; flex: none; color: var(--gold-soft); margin-top: 1px; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.slot { aspect-ratio: 1 / .92; border-radius: 14px; border: 1px dashed var(--line); background: var(--bg-alt); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: .3s var(--ease); }
.slot:hover { border-color: var(--gold); border-style: solid; background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.slot .no { font-family: "Sora", var(--font); font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.slot .st { font-size: 11px; color: #16A34A; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.slot .st::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #16A34A; }

/* ---------- Report ---------- */
.report-cover { aspect-ratio: 1 / 1.32; border-radius: 14px; background: linear-gradient(160deg, #0B1F3A 0%, #16335A 60%, #0D2748 100%); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: space-between; padding: 26px; position: relative; overflow: hidden; }
.report-cover::after { content: ""; position: absolute; top: -20%; right: -20%; width: 70%; height: 70%; background: radial-gradient(circle, rgba(13,110,253,.3), transparent 70%); }
.report-cover > * { position: relative; }
.report-cover .rc-top { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.report-cover .rc-mark { display: flex; align-items: center; gap: 9px; }
.report-cover .rc-mark img { width: 34px; height: 34px; }
.report-cover .rc-mark b { color: #fff; font-family: "Sora", var(--font); font-weight: 800; letter-spacing: .04em; font-size: 18px; }
.report-cover .rc-title { font-family: "Sora", var(--font); font-weight: 800; color: #fff; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.16; }
.report-cover .rc-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.report-cover .rc-stats b { color: var(--gold-soft); font-family: "Sora", var(--font); font-size: 1.05rem; display: block; }
.report-cover .rc-stats span { color: #9FB3D1; font-size: 10.5px; }
.report-cover .rc-foot { font-size: 11px; color: #9FB3D1; }

/* Invitation cover — premium accents (scoped, does not affect report pages) */
.inv-cover {
  background:
    linear-gradient(90deg, transparent, rgba(212,166,58,.85) 28%, rgba(232,199,102,.98) 50%, rgba(212,166,58,.85) 72%, transparent) top/100% 2px no-repeat,
    linear-gradient(160deg, #0B1F3A 0%, #16335A 55%, #0D2748 100%);
  box-shadow: 0 30px 70px -34px rgba(6,16,34,.9), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  will-change: transform;
}
/* faint globe rings (depth) bottom-left */
.inv-cover::before {
  content: ""; position: absolute; left: -28%; bottom: -30%; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle, transparent 57%, rgba(150,180,220,.11) 58%, rgba(150,180,220,.11) 59.4%, transparent 60.4%),
    radial-gradient(circle, transparent 38%, rgba(150,180,220,.07) 39%, rgba(150,180,220,.07) 40.4%, transparent 41.4%);
  pointer-events: none; z-index: 0;
}
/* light sweep (sheen) */
.inv-cover .sheen { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; z-index: 0; }
.inv-cover .sheen::before {
  content: ""; position: absolute; top: -25%; left: -75%; width: 45%; height: 150%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg); transition: left .85s var(--ease);
}
.inv-cover:hover { transform: translateY(-8px); box-shadow: 0 46px 100px -34px rgba(6,16,34,.95), 0 0 0 1px rgba(212,166,58,.4); }
.inv-cover:hover .sheen::before { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .inv-cover, .inv-cover .sheen::before { transition: none; }
}

/* FAQ accordion */
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: rgba(13,110,253,.35); box-shadow: 0 10px 30px -18px rgba(8,20,40,.4); }
.faq summary { list-style: none; cursor: pointer; padding: 17px 22px; font-weight: 700; color: var(--navy); font-family: "Sora", var(--font); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 10px; height: 10px; border-right: 2.4px solid var(--blue); border-bottom: 2.4px solid var(--blue); transform: rotate(45deg); transition: transform .25s var(--ease); flex: none; margin-top: -3px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq .faq-a { padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* comparison table */
.ctable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.ctable { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 14px; }
.ctable th, .ctable td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); }
.ctable thead th { background: #fff; font-family: "Sora", var(--font); font-weight: 800; color: var(--navy); font-size: 14px; line-height: 1.25; }
.ctable thead th small { display: block; font-family: var(--font); font-weight: 500; font-size: 11px; color: var(--muted); margin-top: 3px; }
.ctable thead th:first-child, .ctable tbody th { text-align: left; }
.ctable tbody th { font-weight: 600; color: var(--ink); font-size: 13.8px; }
.ctable .grp td { background: var(--light); font-family: "Sora", var(--font); font-weight: 800; color: var(--navy); text-align: left; font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; padding: 9px 16px; }
.ctable .yes { color: var(--blue); font-weight: 800; }
.ctable .no { color: #C2CCDA; }
.ctable th:nth-child(4), .ctable td:nth-child(4) { background: rgba(13,110,253,.05); }
.ctable thead th:nth-child(4) { color: var(--blue); }
.ctable tbody tr:last-child th, .ctable tbody tr:last-child td { border-bottom: none; }

/* check list (membership guide pricing) */
.ck-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.ck-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 14.5px; line-height: 1.55; }
.ck-list .ck { color: var(--blue); flex: none; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; }
.ck-list .ck svg { width: 20px; height: 20px; }

/* Legal pages (privacy / terms) */
.legal h2 { font-size: 1.2rem; font-family: "Sora", var(--font); color: var(--navy); margin: 34px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); line-height: 1.78; margin: 0; font-size: 15.5px; }

/* market-entry flagship benefit list (on navy) */
.me-feat { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.me-feat li { display: flex; gap: 10px; align-items: flex-start; color: #D7E2F2; font-size: 14px; line-height: 1.5; }
.me-feat li svg { width: 18px; height: 18px; flex: none; color: var(--gold-soft); margin-top: 1px; }
@media (max-width: 680px) { .me-feat { grid-template-columns: 1fr; } }

.report-band { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; background: var(--gradient-navy); border-radius: var(--radius-xl); padding: 34px 38px; color: #C9D8EF; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.report-band::after { content: ""; position: absolute; top: -40%; right: -5%; width: 45%; height: 150%; background: radial-gradient(circle, rgba(212,166,58,.18), transparent 70%); pointer-events: none; }
.report-band > * { position: relative; }
.report-band h2 { color: #fff; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 0 0 8px; }
.report-band p { color: #AFC1DC; margin: 0; font-size: 14.5px; }
.report-band .report-cover { padding: 16px; }
.report-band .report-cover .rc-title { font-size: 14px; }
.report-band .report-cover .rc-mark img { width: 26px; height: 26px; }
.report-band .report-cover .rc-mark b { font-size: 14px; }
@media (max-width: 860px) {
  .report-band { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .report-band .report-cover { max-width: 150px; }
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.kv-list { display: flex; flex-direction: column; gap: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .netviz { margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .statband { grid-template-columns: repeat(2,1fr); }
  .contact-grid, .split, .feature-article { grid-template-columns: 1fr; }
  .feature-article .fa-img { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .roadmap { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .roadmap::before { display: none; }
  .found-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .statband { grid-template-columns: repeat(2,1fr); }
  .cta-band { padding: 44px 26px; }
  .event-card { grid-template-columns: 64px 1fr; }
  .event-card .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px; }
  .ecohub { grid-template-columns: 1fr 1fr; }
  .eco-center { order: -1; grid-column: 1 / -1; min-height: 0; }
  .flow-step { padding: 16px 18px; }
  .mission .mline { line-height: 1.55; }
  /* Mobile-friendly forms */
  .field { margin-bottom: 16px; }
  .field input, .field select, .field textarea { padding: 15px 16px; border-radius: 13px; }
  .field label { font-size: 14px; margin-bottom: 7px; }
  #register-form button[type="submit"], #contact-form button[type="submit"] { width: 100%; padding: 16px; font-size: 16px; }
  .contact-aside { padding: 26px 22px; border-radius: var(--radius); }
  .page-hero { padding: 40px 0 30px; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .brand__alliance { display: none; }
  .roadmap { grid-template-columns: 1fr; }
  .ecohub { grid-template-columns: 1fr; }
}
