/* ============================================================================
   HUMAN-ROBOT 2030 -- INSTITUTIONAL RESEARCH MICROSITE
   https://humanrobot2030.org

   Design: Luxury institutional editorial. Cartier meets McKinsey.
   Typography: Playfair Display (headlines/logo) + Inter (body) +
               IBM Plex Mono (data/labels)
   Palette: #0B0F19 / #FFFFFF / #C6A65C / #2A3142 / #E5E7EB
   ============================================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B0F19;
  --white: #FFFFFF;
  --gold: #C6A65C;
  --gold-light: #d4b46a;
  --gold-dim: rgba(198,166,92,0.15);
  --slate: #2A3142;
  --gray: #E5E7EB;
  --gray-mid: #9CA3AF;
  --gray-dark: #6B7280;
  --text-dim: rgba(255,255,255,0.45);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', 'Consolas', monospace;
  --serif: Georgia, 'Times New Roman', serif;
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-w: 1200px;
  --read-w: 640px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Page spine -- thin vertical accent line on the left edge */
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: clamp(1rem, 2.5vw, 2.2rem);
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(198,166,92,0.12) 10%,
    rgba(198,166,92,0.08) 50%,
    rgba(198,166,92,0.12) 90%,
    transparent 100%
  );
  z-index: 50;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ============================================================================
   SHARED TYPOGRAPHIC ELEMENTS
   ============================================================================ */

.label {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

/* Thin gold rule after labels */
.label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin-top: 0.6rem;
}

.section-num {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(198,166,92,0.08) 0%, rgba(11,15,25,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  pointer-events: none;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1rem;
  letter-spacing: -0.015em;
}


/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  position: relative;
  border-radius: 0 0 12px 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}

/* Gold arrow on primary button */
.btn-primary::after {
  content: '\2192';
  display: inline-block;
  font-size: 0.85rem;
  margin-left: 0.4rem;
  transition: transform 0.35s var(--ease);
  line-height: 1;
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 32px rgba(198,166,92,0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  border-color: rgba(198,166,92,0.4);
  color: var(--gold);
}


/* ============================================================================
   NAVIGATION
   Thin gold accent line at top + refined spacing
   ============================================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,15,25,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Thin gold accent line at top of page */
.site-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.4;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-wordmark {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  font-style: normal;
}

.nav-logo-year {
  color: var(--gold);
}

.nav-logo-sep {
  color: rgba(255,255,255,0.1);
  font-weight: 300;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.35s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  padding: 0.5rem 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: all 0.35s var(--ease) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta { border-radius: 0 0 8px 0 !important; }

.nav-cta:hover {
  box-shadow: 0 2px 16px rgba(198,166,92,0.25) !important;
}

/* Nav condensed state on scroll */
.site-nav.scrolled {
  background: rgba(11,15,25,0.97);
}

.site-nav.scrolled .nav-inner {
  height: 56px;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}

.nav-toggle span {
  display: block; width: 18px; height: 1px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s var(--ease);
}


/* ============================================================================
   1. HERO
   Dramatic type scale + layered gradient depth
   ============================================================================ */

.hero {
  background:
    radial-gradient(ellipse 80% 50% at 65% 35%, rgba(198,166,92,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 5% 85%, rgba(42,49,66,0.6) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 90% 80%, rgba(198,166,92,0.03) 0%, transparent 40%),
    linear-gradient(175deg, #101728 0%, var(--navy) 35%, #060810 100%);
  color: var(--white);
  padding: clamp(10rem, 24vh, 18rem) 0 clamp(6rem, 14vh, 10rem);
  position: relative;
  overflow: hidden;
}

/* Hero background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Blueprint grid -- finer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Vertical axis line */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(var(--gutter) + 60px);
  width: 1px;
  background: linear-gradient(180deg, transparent 5%, rgba(198,166,92,0.15) 25%, rgba(198,166,92,0.15) 75%, transparent 95%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
}

.hero-axis {
  padding-top: 0.5rem;
}

.hero-axis .label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.hero-axis .label::after { display: none; }

.hero-body {
  max-width: 740px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-edition {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(198,166,92,0.3) 0%, rgba(255,255,255,0.03) 100%) 1;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-meta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  display: flex;
  gap: 4rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(198,166,92,0.15) 0%, rgba(255,255,255,0.03) 60%, transparent 100%) 1;
}

.hero-meta-item {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.hero-meta-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}


/* ============================================================================
   2. EXECUTIVE SUMMARY
   ============================================================================ */

.exec {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(198,166,92,0.025) 0%, transparent 60%),
    var(--white);
  position: relative;
}

/* Top gradient separator */
.exec::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray) 20%, var(--gold) 50%, var(--gray) 80%, transparent);
  opacity: 0.5;
}

.exec-header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.exec-header .section-num {
  line-height: 0.8;
  margin-bottom: -0.15em;
}

.exec-header .label::after { display: none; }

.exec-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.exec-text {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--gold) 0%, var(--gray) 25%, var(--gray) 100%) 1;
  padding-top: 2.5rem;
}

.exec-text p {
  font-size: 0.93rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.exec-text p:first-child::first-line {
  font-weight: 500;
  color: var(--navy);
}

.exec-aside {
  position: sticky;
  top: 110px;
}

.pull-quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
  padding-left: 2rem;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--gold) 0%, rgba(198,166,92,0.15) 100%) 1;
}

.pull-quote-cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 1.5rem;
}


/* ============================================================================
   3. HIGHLIGHTS
   ============================================================================ */

.highlights {
  background:
    radial-gradient(ellipse 70% 50% at 25% 75%, rgba(42,49,66,0.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 92% 15%, rgba(198,166,92,0.04) 0%, transparent 50%),
    linear-gradient(178deg, #0f1524 0%, var(--navy) 40%, #070a10 100%);
  color: var(--white);
  padding: clamp(5rem, 9vh, 7rem) 0 clamp(5rem, 10vh, 8rem);
  position: relative;
}

/* Diagonal separator at top of highlights */
.highlights::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 4rem;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
  z-index: 1;
}

.highlights-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.highlights-header h2 {
  color: var(--white);
}

.highlights-header .label::after {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.highlights-header-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  align-self: end;
  padding-bottom: 0.25rem;
}

.h-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.h-card {
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid rgba(255,255,255,0.05);
  margin-right: -1px;
  margin-bottom: -1px;
  position: relative;
  transition: all 0.4s var(--ease);
}

/* Gold top-left corner accent on hover */
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.h-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}

.h-card:hover::before { width: 2.5rem; }
.h-card:hover::after { height: 2.5rem; }

.h-card:hover {
  background: linear-gradient(160deg, rgba(198,166,92,0.04) 0%, rgba(255,255,255,0.015) 30%, transparent 100%);
}

.h-card-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.h-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}

.h-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}


/* ============================================================================
   4. REGIONAL READINESS
   ============================================================================ */

.regional {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background:
    radial-gradient(ellipse 35% 45% at 92% 55%, rgba(198,166,92,0.025) 0%, transparent 50%),
    var(--white);
  position: relative;
}

.regional::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray) 20%, var(--gold) 50%, var(--gray) 80%, transparent);
  opacity: 0.5;
}

.regional-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.regional-header .label::after { display: none; }

.regional-header-desc {
  font-size: 0.9rem;
  color: var(--slate);
  align-self: end;
  line-height: 1.8;
}

.quotes {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.7fr;
  gap: 0;
}

.q-item {
  padding: 2.5rem clamp(1.5rem, 2.5vw, 2.5rem);
  border-left: 1px solid rgba(0,0,0,0.06);
  transition: background 0.4s var(--ease);
}

.q-item:first-child {
  padding-left: 0;
  border-left: none;
}

.q-item:hover {
  background: linear-gradient(180deg, rgba(198,166,92,0.02) 0%, transparent 60%);
}

.q-region {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--gold) 0%, rgba(198,166,92,0.15) 100%) 1;
}

.q-item blockquote {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
}


/* ============================================================================
   5. GOVERNANCE
   ============================================================================ */

.governance {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background:
    radial-gradient(ellipse 45% 45% at 15% 25%, rgba(198,166,92,0.02) 0%, transparent 50%),
    linear-gradient(180deg, #F8F9FA 0%, #F1F2F4 40%, #F8F9FA 100%);
  position: relative;
}

.governance::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06) 20%, rgba(198,166,92,0.3) 50%, rgba(0,0,0,0.06) 80%, transparent);
}

.gov-header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.gov-header .label::after { display: none; }

.gov-intro {
  max-width: var(--read-w);
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 4rem;
  line-height: 1.8;
}

.gov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
}

.gov-item {
  padding: 2.25rem 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: background 0.3s var(--ease);
}

.gov-item:hover {
  background: rgba(198,166,92,0.02);
}

.gov-item:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,0.06);
}

.gov-item:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.gov-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: none;
}

/* First governance item is visually heavier -- spans full width */
.gov-item:first-child {
  grid-column: 1 / -1;
  border-right: none;
  padding: 2.75rem 2.5rem;
  background: linear-gradient(135deg, rgba(198,166,92,0.025) 0%, transparent 60%);
}

.gov-item:first-child h3 {
  font-size: 1.1rem;
}

.gov-item:first-child p {
  font-size: 0.85rem;
  max-width: 600px;
}

.gov-idx {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gold);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198,166,92,0.4);
  margin-top: 0.1rem;
  background: linear-gradient(145deg, rgba(198,166,92,0.06) 0%, transparent 100%);
  transition: all 0.3s var(--ease);
}

.gov-item:hover .gov-idx {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(198,166,92,0.12) 0%, transparent 100%);
}

.gov-item h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.gov-item p {
  font-size: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.7;
}


/* ============================================================================
   6. ABOUT
   ============================================================================ */

.about {
  padding: clamp(8rem, 16vh, 14rem) 0;
  background:
    radial-gradient(ellipse 45% 35% at 25% 80%, rgba(198,166,92,0.02) 0%, transparent 50%),
    var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray) 20%, var(--gold) 50%, var(--gray) 80%, transparent);
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.about-sidebar .label {
  margin-bottom: 2.5rem;
  display: block;
}

.about-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.about-role {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--gray-dark);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.about-body {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--gold) 0%, var(--gray) 20%, var(--gray) 100%) 1;
  padding-top: 2.5rem;
}

.about-body p {
  font-size: 0.93rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  max-width: var(--read-w);
  line-height: 1.8;
}


/* ============================================================================
   7. DOWNLOAD
   ============================================================================ */

.download {
  background:
    radial-gradient(ellipse 50% 60% at 85% 45%, rgba(198,166,92,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(42,49,66,0.4) 0%, transparent 40%),
    linear-gradient(172deg, #101728 0%, var(--navy) 100%);
  color: var(--white);
  padding: clamp(5rem, 10vh, 8rem) 0;
  position: relative;
}

.download::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,166,92,0.3), transparent);
}

.dl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dl-left h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.dl-left .label {
  margin-bottom: 2rem;
  display: block;
}

.dl-left .label::after {
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.dl-file {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}

.dl-meta {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dl-right {
  text-align: right;
}

.dl-right .btn {
  margin-bottom: 2rem;
}

.dl-contact {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.dl-contact a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,166,92,0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s var(--ease);
}

.dl-contact a:hover {
  border-color: var(--gold);
}


/* ============================================================================
   8. FOOTER
   ============================================================================ */

.site-footer {
  padding: 4.5rem 0 3.5rem;
  background: var(--white);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Large year watermark in footer */
.site-footer .footer-inner::before {
  content: '2026';
  position: absolute;
  right: -0.5rem;
  bottom: -1.2rem;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198,166,92,0.07);
  pointer-events: none;
  user-select: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray) 20%, var(--gold) 50%, var(--gray) 80%, transparent);
  opacity: 0.4;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-left {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--gray-dark);
  letter-spacing: 0.06em;
}

.footer-left strong,
.footer-logo {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.footer-right {
  font-size: 0.7rem;
  color: var(--gray-mid);
  max-width: 380px;
  text-align: right;
  line-height: 1.55;
}


/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 960px) {
  .exec-grid { grid-template-columns: 1fr; }
  .exec-grid { gap: 3rem; }

  .highlights-header,
  .regional-header,
  .dl-inner { grid-template-columns: 1fr; }

  .h-grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; gap: 0; }

  .q-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .q-item:first-child { border-top: none; }

  .gov-grid { grid-template-columns: 1fr; }
  .gov-item:nth-child(odd) { border-right: none; }
  .gov-item:last-child:nth-child(odd) { grid-column: auto; }

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

  .dl-right { text-align: left; }

  .hero::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-axis { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(11,15,25,0.98);
    padding: 2rem var(--gutter); gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

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

  .hero h1 { font-size: clamp(2.8rem, 11vw, 3.8rem); line-height: 1.0; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .hero-meta { flex-direction: column; gap: 2rem; }

  .footer-inner { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .footer-right { text-align: left; }

  .exec-header .section-num { display: none; }
  .gov-header .section-num { display: none; }

  .highlights-header { gap: 2rem; }
  .regional-header { gap: 2rem; }
}

/* ============================================================================
   KEY FIGURES BAR
   Thin data strip between hero and exec summary
   ============================================================================ */

.key-figures {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 2.25rem 0;
  position: relative;
}

.key-figures::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,166,92,0.2), transparent);
}

.kf-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.kf-header .label {
  color: rgba(255,255,255,0.55);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
}

.kf-header .label::after {
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 3rem;
}

.kf-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.kf-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.kf-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.kf-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.kf-divider {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, transparent, rgba(198,166,92,0.3), transparent);
  flex-shrink: 0;
}


/* ============================================================================
   INTERSTITIAL QUOTE
   Full-width dark banner between highlights and regional
   ============================================================================ */

.interstitial {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(198,166,92,0.04) 0%, transparent 60%),
    linear-gradient(175deg, #0d1220 0%, var(--navy) 50%, #080b12 100%);
  padding: clamp(8rem, 18vh, 14rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Interstitial background image layer */
.interstitial-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.interstitial::before,
.interstitial::after {
  content: '';
  position: absolute;
  left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,166,92,0.25), transparent);
}

.interstitial::before { top: 0; }
.interstitial::after { bottom: 0; }

.interstitial-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.interstitial-mark {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-style: italic;
  line-height: 1;
  color: rgba(198,166,92,0.08);
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.interstitial-quote {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.interstitial-cite {
  display: block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 2rem;
}


/* ============================================================================
   REPORT PREVIEW (Download section)
   Styled document thumbnail
   ============================================================================ */

.report-preview {
  width: 180px;
  height: 240px;
  margin-left: auto;
  margin-bottom: 2.5rem;
  position: relative;
  background: linear-gradient(160deg, #151c2e 0%, #0d1220 100%);
  border: 1px solid rgba(198,166,92,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}

.report-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2.5rem; height: 1px;
  background: var(--gold);
}

.report-preview::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 2.5rem;
  background: var(--gold);
}

.report-preview:hover {
  border-color: rgba(198,166,92,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.report-preview-inner {
  text-align: center;
  padding: 1.5rem;
}

.report-preview-label {
  display: block;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.report-preview-title {
  display: block;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.report-preview-year {
  display: block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
}


/* ============================================================================
   DROP CAP -- Exec summary first paragraph
   ============================================================================ */

.exec-text p:first-child::first-letter {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  margin-top: 0.15rem;
  color: var(--navy);
}


/* ============================================================================
   FOOTER ORNAMENT
   ============================================================================ */

.footer-ornament {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}

.footer-ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray) 20%, var(--gold) 50%, var(--gray) 80%, transparent);
  opacity: 0.4;
}

.footer-diamond {
  display: inline-block;
  font-size: 0.5rem;
  color: var(--gold);
  background: var(--white);
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}


/* ============================================================================
   PREMIUM DESIGN REFINEMENTS
   ============================================================================ */

/* Subtle animated gold shimmer on hero h1 */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero h1 {
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 40%,
    rgba(198,166,92,0.6) 50%,
    var(--white) 60%,
    var(--white) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 8s linear infinite;
}

/* Gold accent bar under hero edition tag */
.hero-edition::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1.5rem;
}

/* Refined stat numbers in hero */
.hero-meta-item strong {
  background: linear-gradient(180deg, var(--white) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section h2 gold underline accent */
h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.75rem;
  opacity: 0.6;
}

.highlights-header h2::after,
.exec-header h2::after { display: none; }

.highlights h2::after {
  background: var(--gold);
  opacity: 0.4;
}

/* Dramatic typography variation between sections */
.exec-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.highlights-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.regional-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.04em;
}

.gov-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.dl-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* Enhanced card hover glow */
.h-card:hover {
  background: linear-gradient(160deg, rgba(198,166,92,0.06) 0%, rgba(255,255,255,0.02) 30%, transparent 100%);
  box-shadow: inset 0 1px 0 rgba(198,166,92,0.1);
}

/* About author name -- gold gradient */
.about-name {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced pull quote styling */
.pull-quote::before {
  content: '\201C';
  font-family: var(--display);
  font-size: 4rem;
  color: rgba(198,166,92,0.15);
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
  pointer-events: none;
}

.exec-aside {
  position: sticky;
  top: 110px;
}

.pull-quote {
  position: relative;
}

/* Governance items -- subtle left gold accent on hover */
.gov-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gov-item {
  position: relative;
}

.gov-item:hover::before {
  opacity: 0.5;
}

/* Regional quote items -- refined hover with gold top border */
.q-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.q-item {
  position: relative;
}

.q-item:hover::before {
  opacity: 0.5;
}

/* Download section -- animated border on report preview */
@keyframes previewPulse {
  0%, 100% { border-color: rgba(198,166,92,0.15); }
  50% { border-color: rgba(198,166,92,0.35); }
}

.report-preview {
  animation: previewPulse 4s ease-in-out infinite;
}

/* Key figures -- gold gradient text for values */
.kf-value {
  background: linear-gradient(180deg, var(--white) 20%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Refined nav wordmark hover */
.nav-wordmark:hover .nav-logo {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s var(--ease);
}


/* ============================================================================
   CUSTOM DESIGN SYSTEM -- Breaking the WordPress feel
   ============================================================================ */

/* Large decorative background number on exec section */
.exec {
  counter-reset: none;
}

.exec::after {
  content: '01';
  position: absolute;
  right: var(--gutter);
  top: clamp(3rem, 8vh, 6rem);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198,166,92,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Regional section -- large decorative word */
.regional::after {
  content: 'GLOBAL';
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 5vh, 4rem);
  font-family: var(--mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.03);
  pointer-events: none;
  user-select: none;
}

/* Highlights section -- large background number */
.highlights-bg-num {
  position: absolute;
  left: var(--gutter);
  top: clamp(4rem, 10vh, 8rem);
  font-family: var(--display);
  font-size: clamp(10rem, 25vw, 22rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: rgba(255,255,255,0.015);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Highlights section bottom diagonal transition (into interstitial) */
.highlights::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3rem;
  background: linear-gradient(175deg, #0d1220 0%, var(--navy) 50%, #080b12 100%);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
  z-index: 1;
}

/* Key figures bar -- offset left to break grid alignment */
.key-figures .kf-inner {
  margin-left: -1rem;
  padding-left: 1rem;
}

/* Regional header -- asymmetric split */
.regional-header {
  grid-template-columns: 1.2fr 0.8fr;
}

/* Highlights header -- asymmetric split */
.highlights-header {
  grid-template-columns: 0.7fr 1.3fr;
}

/* About section -- wider sidebar offset for breathing room */
.about-grid {
  grid-template-columns: 320px 1fr;
}

/* About body text -- extra line height for spaciousness */
.about-body p {
  line-height: 2;
  margin-bottom: 2rem;
}

/* About section -- large watermark word */
.about-watermark {
  position: absolute;
  left: var(--gutter);
  top: clamp(2rem, 6vh, 5rem);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198,166,92,0.05);
  pointer-events: none;
  user-select: none;
}

/* First regional quote -- visually larger text */
.q-item:first-child blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

/* Download section -- slightly offset grid */
.dl-inner {
  grid-template-columns: 1.1fr 0.9fr;
}

/* Interstitial quote -- add thin side borders for tension */
.interstitial-inner::before,
.interstitial-inner::after {
  content: '';
  position: absolute;
  top: -3rem;
  bottom: -3rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198,166,92,0.12), transparent);
}

.interstitial-inner::before { left: -4rem; }
.interstitial-inner::after { right: -4rem; }

.interstitial-inner {
  position: relative;
}

/* Governance section -- subtle offset to break grid predictability */
.gov-grid {
  margin-left: 2rem;
}

/* Key figures number animation base style */
@keyframes kfSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kf-value {
  animation: kfSlideIn 0.6s var(--ease) both;
}

.kf-item:nth-child(1) .kf-value { animation-delay: 0.1s; }
.kf-item:nth-child(3) .kf-value { animation-delay: 0.25s; }
.kf-item:nth-child(5) .kf-value { animation-delay: 0.4s; }

/* Report preview -- cut corner effect */
.report-preview {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

/* Exec section pull quote -- offset it slightly to break alignment */
.exec-aside {
  margin-top: 2rem;
}

/* Hero CTA group -- offset from text alignment */
.hero-ctas {
  margin-left: 0.5rem;
}


/* ============================================================================
   RESPONSIVE ADDITIONS
   ============================================================================ */

@media (max-width: 960px) {
  .kf-inner { flex-wrap: wrap; gap: 1.5rem; }
  .kf-divider { display: none; }
  .kf-item { flex: none; width: 33%; padding: 0; }
  .regional-header { grid-template-columns: 1fr; }
  .highlights-header { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .dl-inner { grid-template-columns: 1fr; }
  .gov-grid { margin-left: 0; }
  .exec::after { display: none; }
  .regional::after { display: none; }
  .highlights::after { display: none; }

  /* Gov first-child reset on mobile */
  .gov-item:first-child { grid-column: auto; }
  .highlights-bg-num { display: none; }
  .about-watermark { display: none; }
}

@media (max-width: 600px) {
  .kf-item { width: 100%; }
  .kf-inner { gap: 1.25rem; margin-left: 0; padding-left: 0; }

  .interstitial-quote { font-size: clamp(1.1rem, 5vw, 1.4rem); }
  .interstitial-mark { font-size: 4rem; top: -1.5rem; }
  .interstitial-inner::before,
  .interstitial-inner::after { display: none; }

  .report-preview { width: 140px; height: 190px; margin-left: 0; }

  .exec-text p:first-child::first-letter {
    font-size: 2.8rem;
    margin-right: 0.35rem;
  }

  /* Hero bg image -- slightly more visible on mobile for depth */
  .hero-bg-img { opacity: 0.18; }

  /* Page spine hidden on mobile */
  body::after { display: none; }

  /* Footer year watermark smaller on mobile */
  .site-footer .footer-inner::before {
    font-size: 5rem;
    right: -0.25rem;
  }

  .quotes { grid-template-columns: 1fr; }
  .q-item:first-child blockquote { font-size: inherit; }

  .hero-ctas { margin-left: 0; }
}


/* ============================================================================
   LANGUAGE SELECTOR
   ============================================================================ */

.lang-selector {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 2rem;
}

.lang-selector a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
  text-decoration: none;
}

.lang-selector a:hover {
  color: var(--white);
}

.lang-selector .active {
  color: var(--gold);
  font-weight: 700;
}

.lang-selector .lang-sep {
  color: rgba(255,255,255,0.15);
}


@media print {
  .site-nav { display: none; }
  body { font-size: 11pt; color: #000; }
  .hero { background: #fff; color: #000; padding: 2rem 0; }
  .hero::before, .hero::after { display: none; }
  .hero-bg-img { display: none; }
  .key-figures { display: none; }
  .interstitial { background: #fff; color: #000; }
  .interstitial-bg-img { display: none; }
  .highlights::before, .exec::before, .regional::before,
  .governance::before, .about::before, .download::before,
  .site-footer::before, .site-nav::before { display: none; }
  h2::after { display: none; }
  .hero h1 { -webkit-text-fill-color: #000; color: #000; animation: none; }
  body::after { display: none; }
  .exec::after, .regional::after, .highlights::after { display: none; }
  .highlights-bg-num, .about-watermark { display: none; }
  .site-footer .footer-inner::before { display: none; }
}
