@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --bg: #f6f9ff;
  --bg-soft: #eef4ff;
  --surface: #ffffff;
  --surface-strong: #e8f0ff;
  --ink: #0f1b33;
  --ink-muted: #3f537e;
  --line: #d5e0f6;
  --accent: #1b67f5;
  --accent-2: #18a57f;
  --accent-soft: #e6f0ff;
  --warning-soft: #fff4de;
  --warning-ink: #7d5400;
  --shadow: 0 12px 34px rgba(16, 47, 117, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --ag-bg-0: #0a1222;
  --ag-bg-1: #152a4a;
  --ag-bg-2: #2b5585;
  --ag-accent: #8bc8ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 20% -10%, #dbe8ff 0%, rgba(219, 232, 255, 0) 70%),
    radial-gradient(900px 420px at 94% 8%, #d8f2e9 0%, rgba(216, 242, 233, 0) 65%),
    linear-gradient(180deg, var(--bg) 0%, #fdfefe 100%);
}

body[data-page="home"],
body[data-page="meetings-catalog"],
body[data-page="meeting-visual"],
body[data-page="meeting-detail"] {
  position: relative;
  overflow-x: hidden;
}

.home-motion-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-motion-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1150px 420px at 10% -8%, rgba(178, 203, 255, 0.2) 0%, rgba(178, 203, 255, 0) 70%),
    radial-gradient(1050px 360px at 92% 8%, rgba(161, 224, 202, 0.16) 0%, rgba(161, 224, 202, 0) 65%);
}

.home-motion-bg__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.home-motion-bg__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246, 249, 255, 0.26) 0%,
    rgba(246, 249, 255, 0.08) 36%,
    rgba(252, 254, 255, 0.42) 100%
  );
}

.home-motion-bg--ag .home-motion-bg__canvas {
  opacity: 1;
}

body[data-page="home"].ag-bg-ready {
  background:
    radial-gradient(1200px 680px at 18% -8%, rgba(105, 176, 255, 0.22) 0%, rgba(105, 176, 255, 0) 62%),
    radial-gradient(960px 520px at 88% 12%, rgba(89, 137, 255, 0.2) 0%, rgba(89, 137, 255, 0) 67%),
    linear-gradient(180deg, var(--ag-bg-0) 0%, var(--ag-bg-1) 48%, var(--ag-bg-2) 100%);
}

body[data-page="home"].ag-bg-ready .home-motion-bg::before {
  background:
    radial-gradient(1080px 420px at 16% -12%, rgba(139, 188, 255, 0.26) 0%, rgba(139, 188, 255, 0) 70%),
    radial-gradient(900px 360px at 84% 10%, rgba(111, 171, 255, 0.2) 0%, rgba(111, 171, 255, 0) 68%);
  opacity: 0.4;
}

body[data-page="home"].ag-bg-ready .home-motion-bg__wash {
  background: linear-gradient(
    180deg,
    rgba(10, 20, 42, 0.10) 0%,
    rgba(14, 28, 52, 0.04) 44%,
    rgba(124, 166, 224, 0.16) 100%
  );
}

body[data-page="home"].ag-bg-ready .site-header {
  background: rgba(10, 20, 42, 0.46);
  border-bottom: 1px solid rgba(146, 181, 237, 0.30);
}

body[data-page="home"].ag-bg-ready .site-nav a {
  color: #d7e5ff;
}

body[data-page="home"].ag-bg-ready .site-nav a:hover,
body[data-page="home"].ag-bg-ready .site-nav a:focus-visible {
  background: rgba(139, 182, 255, 0.24);
  color: #f4f8ff;
}

body[data-page="home"].ag-bg-ready .site-nav a.is-active {
  background: rgba(226, 239, 255, 0.86);
  color: #183a7a;
}

body[data-page="home"].ag-bg-ready .hero {
  background: linear-gradient(165deg, rgba(230, 240, 255, 0.64), rgba(206, 224, 247, 0.58));
  border: 1px solid rgba(171, 197, 234, 0.52);
  backdrop-filter: blur(10px) saturate(1.15);
  box-shadow: 0 18px 44px rgba(8, 22, 49, 0.20);
}

body[data-page="home"].ag-bg-ready .metric-pill {
  background: rgba(236, 245, 255, 0.46);
  border: 1px solid rgba(179, 202, 236, 0.54);
}

body[data-page="home"].ag-bg-ready .listing-card {
  background: linear-gradient(160deg, rgba(228, 239, 255, 0.60), rgba(206, 224, 248, 0.54));
  border: 1px solid rgba(167, 194, 232, 0.52);
  backdrop-filter: blur(8px) saturate(1.12);
  box-shadow: 0 12px 30px rgba(8, 22, 49, 0.18);
}

body[data-page="home"].ag-bg-ready .listing-card:hover,
body[data-page="home"].ag-bg-ready .listing-card:focus-visible {
  box-shadow: 0 16px 36px rgba(8, 22, 49, 0.24);
}

body[data-page="home"].ag-bg-ready .section-head h2 {
  color: #dce9ff;
}

body[data-page="home"].ag-bg-ready .section-head__link {
  color: #9fc4ff;
}

body[data-page="home"].ag-bg-ready .section-head__link:hover,
body[data-page="home"].ag-bg-ready .section-head__link:focus-visible {
  color: #c1daff;
}


body[data-page="home"].ag-bg-fallback {
  background:
    radial-gradient(1150px 580px at 24% -8%, rgba(95, 155, 255, 0.22) 0%, rgba(95, 155, 255, 0) 60%),
    radial-gradient(980px 500px at 86% 12%, rgba(64, 124, 235, 0.24) 0%, rgba(64, 124, 235, 0) 64%),
    linear-gradient(180deg, #070c18 0%, #0e1b33 52%, #173158 100%);
}

body[data-page="home"].ag-bg-fallback .home-motion-bg::before {
  opacity: 0.46;
}

body[data-page="home"].ag-bg-fallback .home-motion-bg__canvas {
  display: none;
}

body[data-page="home"].ag-bg-fallback .home-motion-bg__wash {
  background: linear-gradient(
    180deg,
    rgba(9, 17, 35, 0.24) 0%,
    rgba(8, 14, 30, 0.08) 46%,
    rgba(19, 41, 76, 0.3) 100%
  );
}

body[data-page="home"].ag-bg-reduced-motion .home-motion-bg__canvas {
  opacity: 0.9;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100vw - 2.25rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: #09132a;
  color: #fff;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
  background: rgba(246, 249, 255, 0.85);
  border-bottom: 1px solid rgba(213, 224, 246, 0.7);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.56rem;
  gap: 1rem;
}

.header-brandbar {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid #cfdbf1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(16, 47, 117, 0.08);
  padding: 0.38rem 0.58rem;
  text-decoration: none;
}

.header-brandbar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfebff;
  padding: 0.2rem 0.7rem;
}

.header-brandbar__divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #edf4ff;
  color: #1f458a;
  font-weight: 700;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.header-brandbar__logo {
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.header-brandbar__logo--ssw {
  max-height: 24px;
}

.header-brandbar__logo--jinko {
  max-height: 40px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--accent-soft);
  color: #173b87;
  outline: none;
}

.site-nav a.is-active {
  background: #173b87;
  color: #fff;
}

.site-header__locale {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.site-locale-switch--header {
  gap: 0.34rem;
}

.site-locale-switch--header .site-locale-switch__link {
  min-width: 2.35rem;
  text-align: center;
  padding: 0.34rem 0.54rem;
  font-size: 0.8rem;
  text-transform: lowercase;
}

.page-shell {
  position: relative;
  z-index: 1;
  padding: 2.1rem 0 3.8rem;
}

.hero {
  padding: 2.2rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(230, 240, 255, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero--compact {
  padding: 1.8rem;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 600;
}

.hero__title {
  font-family: "Sora", "Avenir Next", sans-serif;
  margin: 0.72rem 0;
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0;
  max-width: 76ch;
  color: var(--ink-muted);
  line-height: 1.6;
  font-size: 1rem;
}

.hero__metrics {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.metric-pill {
  min-width: 180px;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.metric-pill__value {
  display: block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.metric-pill__label {
  display: block;
  font-size: 0.82rem;
  margin-top: 0.25rem;
  color: var(--ink-muted);
}

.section {
  margin-top: 1.4rem;
}

.section-head {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.72rem);
}

.section-head__link {
  color: #173b87;
  font-weight: 600;
  text-decoration: none;
}

.section-head__link:hover,
.section-head__link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-list {
  display: grid;
  gap: 0.9rem;
}

.listing-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(16, 47, 117, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.listing-card:hover,
.listing-card:focus-visible {
  transform: translateY(-2px);
  border-color: #a8c2f3;
  box-shadow: 0 16px 34px rgba(16, 47, 117, 0.11);
  outline: none;
}

.listing-card__type {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #16427f;
  background: var(--accent-soft);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.listing-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 10px;
  font-size: 1.08rem;
  border: 1px solid #cddcf7;
  background: #eef4ff;
  box-shadow: inset 0 -2px 0 rgba(32, 73, 157, 0.08);
}

.listing-card__date {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.listing-card__title {
  margin: 0;
  font-size: 1.03rem;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.listing-card__cta {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.empty-state {
  border: 1px dashed #b4c7ed;
  border-radius: var(--radius-lg);
  background: #f8fbff;
  color: var(--ink-muted);
  padding: 1rem;
}

.meeting-layout {
  display: grid;
  gap: 0.9rem;
}

.meeting-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(18, 54, 132, 0.05);
  padding: 1rem 1rem 1.1rem;
}

.meeting-block h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.1rem;
}

.meeting-block p {
  margin: 0.6rem 0 0;
  color: #243a66;
  line-height: 1.64;
}

.meeting-block ul {
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
  color: #243a66;
  line-height: 1.6;
}

.meeting-block li + li {
  margin-top: 0.4rem;
}

.meeting-block--transcript {
  border-color: #d2e6de;
  background: linear-gradient(180deg, #ffffff, #f3fdf8);
}

.transcript-wrap {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.62rem;
}

.transcript-block {
  margin: 0;
  border-left: 3px solid #8ecab5;
  padding: 0.65rem 0.75rem;
  border-radius: 0 10px 10px 0;
  background: #ffffff;
}

.page-feedback {
  margin-top: 1.1rem;
  color: #69480b;
  font-weight: 600;
  background: #fff5dc;
  border: 1px solid #f2deb2;
  border-radius: 12px;
  padding: 0.72rem 0.86rem;
  display: none;
}

.page-feedback.is-visible {
  display: block;
}

.site-locale-footer {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  border-top: 1px solid rgba(213, 224, 246, 0.7);
  background: rgba(246, 249, 255, 0.85);
}

.site-locale-footer__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.8rem 0;
}

.site-locale-footer__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a406c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-locale-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-locale-switch__link {
  text-decoration: none;
  color: #29467d;
  background: #ebf2ff;
  border: 1px solid #d6e2f8;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-locale-switch__link[aria-current="page"] {
  color: #fff;
  background: #173b87;
  border-color: #173b87;
}

.meeting-anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 38, 88, 0.06);
}

.meeting-anchor-nav a {
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  color: #1e427f;
  background: #eff5ff;
  border: 1px solid #d5e1f7;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.meeting-anchor-nav a:hover,
.meeting-anchor-nav a:focus-visible {
  background: #dce9ff;
  transform: translateY(-1px);
  outline: none;
}

.meeting-kpi-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.meeting-kpi-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.82rem 0.92rem;
  box-shadow: 0 8px 22px rgba(16, 47, 117, 0.07);
}

.meeting-kpi-card h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.48rem;
  color: #173b87;
}

.meeting-kpi-card p {
  margin: 0.24rem 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.meeting-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.92rem;
}

.meeting-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 47, 117, 0.07);
  padding: 1rem;
}

.meeting-panel h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.15rem;
}

.meeting-panel p {
  margin: 0.64rem 0 0;
  line-height: 1.64;
  color: #233a64;
}

.meeting-panel--text {
  background: linear-gradient(165deg, #ffffff, #f5f9ff);
}

.meeting-panel--visual {
  background: linear-gradient(160deg, #ffffff, #eef5ff);
}


.meeting-panel--premium {
  position: relative;
  overflow: hidden;
  border-color: #c7dbff;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(228, 238, 255, 0.72) 0%, rgba(228, 238, 255, 0) 48%),
    linear-gradient(165deg, #ffffff 0%, #eef4ff 100%);
}

.premium-sheen::after {
  content: "";
  position: absolute;
  inset: -40% -48%;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-36%);
  animation: premiumSheen 14s ease-in-out infinite;
  pointer-events: none;
}

.lift-soft {
  transition: transform 280ms cubic-bezier(0.24, 0.7, 0.2, 1), box-shadow 280ms ease;
}

.lift-soft:hover,
.lift-soft:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 47, 117, 0.1);
}

.signal-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.signal-card {
  border: 1px solid #cfe0ff;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.58rem 0.62rem;
}

.signal-card strong {
  display: block;
  font-size: 0.84rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: #123469;
}

.signal-card span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.78rem;
  color: #35527f;
  line-height: 1.45;
}

.policy-ladder {
  margin-top: 0.76rem;
  display: grid;
  gap: 0.52rem;
}

.policy-step {
  border-left: 4px solid #5e8ef0;
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #d7e4fb;
  border-right: 1px solid #d7e4fb;
  border-bottom: 1px solid #d7e4fb;
  padding: 0.5rem 0.66rem;
}

.policy-step strong {
  display: block;
  font-size: 0.84rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: #143565;
}

.policy-step span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #35527f;
  line-height: 1.45;
}

.diagram-strip {
  margin-top: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.diagram-node {
  flex: 0 0 auto;
  min-width: 170px;
  border: 1px solid #cadcff;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1d396c;
  line-height: 1.4;
  padding: 0.58rem 0.54rem;
}

.diagram-node small {
  font-size: 0.71rem;
  font-weight: 600;
  color: #4a6593;
}

.diagram-arrow {
  flex: 0 0 auto;
  color: #245fd7;
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes premiumSheen {
  0% {
    transform: translateX(-38%);
    opacity: 0.02;
  }
  14% {
    opacity: 0.34;
  }
  50% {
    transform: translateX(44%);
    opacity: 0.08;
  }
  100% {
    transform: translateX(62%);
    opacity: 0;
  }
}

.flow-track {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.34rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.flow-node {
  flex: 0 0 auto;
  min-width: 148px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e3566;
  border: 1px solid #caddff;
  border-radius: 10px;
  background: #fff;
  padding: 0.62rem 0.52rem;
}

.flow-arrow {
  flex: 0 0 auto;
  font-weight: 700;
  color: #1f5ad6;
}

.lane-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.lane-card {
  border: 1px solid #ceddf6;
  border-radius: 12px;
  background: #fff;
  padding: 0.72rem;
}

.lane-card--strong {
  border-color: #8ab2f4;
  background: linear-gradient(180deg, #fff, #f1f7ff);
}

.lane-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.lane-card p {
  margin: 0.52rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.lane-pill {
  display: inline-flex;
  margin-top: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #16427f;
  background: #e7f1ff;
  border: 1px solid #c8ddff;
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
}

.table-wrap--visual {
  margin-top: 0.74rem;
}

.visual-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  color: #1f3561;
}

.visual-table th,
.visual-table td {
  border: 1px solid #d2dff4;
  padding: 0.55rem 0.58rem;
  vertical-align: top;
}

.visual-table th {
  background: #edf4ff;
  text-align: left;
  font-weight: 700;
}

.visual-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.visual-table--compact th,
.visual-table--compact td {
  font-size: 0.81rem;
}

.policy-map {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
}

.policy-node {
  border: 1px solid #c9dbff;
  border-radius: 10px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a3a73;
  padding: 0.58rem 0.7rem;
}

.policy-link {
  justify-self: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #3a5f9e;
  background: #ebf2ff;
  border: 1px dashed #b6c9ee;
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
}

.mini-roadmap {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.52rem;
}

.mini-roadmap__item {
  border-left: 4px solid #4e84ea;
  border-radius: 0 10px 10px 0;
  background: #fff;
  padding: 0.52rem 0.68rem;
}

.mini-roadmap__item strong {
  display: block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.86rem;
}

.mini-roadmap__item span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.81rem;
  color: #35527f;
}

.timeline-strip {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.65rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.52rem;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 0.1rem;
  background: #1b67f5;
  box-shadow: 0 0 0 5px rgba(27, 103, 245, 0.14);
}

.timeline-item p {
  margin: 0.24rem 0 0;
  font-size: 0.86rem;
}

.notes-topic {
  margin-top: 0.8rem;
  border-top: 1px solid #dee8f9;
  padding-top: 0.74rem;
}

.notes-topic h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.97rem;
}

.notes-topic ul {
  margin: 0.55rem 0 0;
  padding-left: 1.2rem;
  color: #233b65;
  line-height: 1.54;
}

.notes-topic li + li {
  margin-top: 0.36rem;
}

.meeting-panel ol {
  margin: 0.62rem 0 0;
  padding-left: 1.2rem;
  color: #233b65;
}

.meeting-panel ol li + li {
  margin-top: 0.34rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-motion .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.no-motion .premium-sheen::after {
  animation: none;
  opacity: 0.14;
}

.no-motion .lift-soft {
  transition: none;
}

.no-motion .lift-soft:hover,
.no-motion .lift-soft:focus-within {
  transform: none;
}

.no-motion .home-motion-bg__canvas {
  opacity: 0.62;
}

.no-motion .home-motion-bg--ag .home-motion-bg__canvas {
  opacity: 0.86;
}

@media (max-width: 900px), (pointer: coarse) {
  .home-motion-bg__canvas {
    opacity: 0.55;
  }

  .home-motion-bg--ag .home-motion-bg__canvas {
    opacity: 0.92;
  }
}

@media (max-width: 900px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 0.68rem 0;
  }

  .header-brandbar {
    order: 1;
  }

  .site-header__locale {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  .hero,
  .hero--compact {
    padding: 1.22rem;
  }

  .header-brandbar {
    max-width: 100%;
    border-radius: 14px;
    gap: 0.52rem;
  }

  .header-brandbar__item {
    min-width: 0;
    width: clamp(106px, 33vw, 132px);
    border-radius: 10px;
    height: 42px;
  }

  .header-brandbar__divider {
    width: 26px;
    height: 26px;
  }

  .header-brandbar__logo--ssw {
    max-height: 21px;
  }

  .header-brandbar__logo--jinko {
    max-height: 34px;
  }

  .meeting-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meeting-two-col {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .lane-grid {
    grid-template-columns: 1fr;
  }

  .meeting-anchor-nav {
    top: 70px;
  }

  .site-locale-footer__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .meeting-anchor-nav {
    position: static;
    background: #fff;
  }

  .meeting-kpi-grid {
    grid-template-columns: 1fr;
  }

  .visual-table {
    min-width: 640px;
  }

  .table-wrap--visual {
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-sheen::after {
    animation: none;
    opacity: 0.14;
  }

  .lift-soft {
    transition: none;
  }

  .lift-soft:hover,
  .lift-soft:focus-within {
    transform: none;
  }
}
