:root {
  --navy-950: #061224;
  --navy-900: #0a1830;
  --navy-800: #102445;
  --navy-700: #183258;
  --gold-500: #c8a465;
  --gold-400: #dec28f;
  --gold-300: #edd8b2;
  --slate-200: #dce5f0;
  --slate-300: #b7c4d5;
  --slate-500: #7e8ca3;
  --slate-600: #657389;
  --mist-100: #f6f5f1;
  --mist-200: #ecf0f5;
  --white: #ffffff;
  --ink: #0f1c32;
  --shadow-lg: 0 32px 70px rgba(5, 12, 24, 0.2);
  --shadow-md: 0 22px 50px rgba(7, 17, 31, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1240px;
  --header-height: 92px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 164, 101, 0.12), transparent 26%),
    linear-gradient(180deg, #f9fafc 0%, #eef2f6 38%, #f7f5f0 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 28, 50, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 28, 50, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 95%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-top: 10px;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(6, 18, 36, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(6, 18, 36, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav {
  position: relative;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 36, 0.4);
  backdrop-filter: blur(18px);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(6, 18, 36, 0.16);
}

.brand-mark__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.brand-mark__name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.06rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-links__panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 18, 36, 0.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.nav-links__eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  background: linear-gradient(135deg, rgba(76, 127, 226, 0.22), rgba(200, 164, 101, 0.16));
  color: var(--white);
}

.nav-link:hover {
  transform: translateX(2px);
}

.nav-cta {
  margin-top: 8px;
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 18, 36, 0.4);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 30px rgba(6, 18, 36, 0.16);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: linear-gradient(135deg, var(--white), #eef2f7);
  color: var(--ink);
  box-shadow: 0 18px 32px rgba(10, 24, 48, 0.14);
}

.button--primary {
  background: linear-gradient(135deg, var(--gold-500), #a88343);
  color: var(--navy-950);
  box-shadow: 0 20px 44px rgba(168, 131, 67, 0.28);
}

.button--ghost {
  background: transparent;
  border-color: rgba(10, 24, 48, 0.12);
  color: var(--navy-800);
}

.button--dark {
  background: rgba(8, 19, 37, 0.88);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.hero--video {
  min-height: auto;
  padding: calc(var(--header-height) + 12px) 0 0;
  background: transparent;
  color: var(--white);
  overflow: visible;
}

.hero-video__shell {
  width: min(calc(100% - 16px), var(--max-width));
  margin: 0 auto;
}

.hero-video__media {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  background: #0b1324;
  isolation: isolate;
}

.hero-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 22, 0.2) 0%, rgba(3, 10, 22, 0.08) 30%, rgba(3, 10, 22, 0.58) 100%),
    radial-gradient(circle at top, rgba(119, 165, 229, 0.18), transparent 40%);
  pointer-events: none;
}

.hero-video__player {
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(132px, 18vh, 176px) 30px 30px;
  text-align: center;
}

.hero-video__content {
  width: min(620px, 100%);
}

.hero-video__rule {
  width: min(190px, 48vw);
  height: 2px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
}

.hero-video__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-video__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 18px rgba(2, 8, 18, 0.22);
}

.hero-video__dot--active {
  width: 14px;
  height: 14px;
  background: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1600ms ease;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.3) 0%, rgba(5, 12, 24, 0.5) 48%, rgba(5, 12, 24, 0.88) 100%),
    radial-gradient(circle at top, rgba(128, 173, 237, 0.22), transparent 36%);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-inner {
  width: min(920px, 100%);
  text-align: center;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-kicker--dark {
  background: rgba(6, 18, 36, 0.06);
  border-color: rgba(6, 18, 36, 0.08);
  color: var(--navy-700);
}

.hero-title,
.page-hero__title,
.section-title,
.quote-card__quote,
.footer-brand,
.section-shell h3,
.project-card__body h3,
.sector-card__body h3,
.country-card h3,
.country-detail__content h3,
.investor-card h3,
.resource-card h3,
.pillar-card h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-shadow: 0 18px 34px rgba(4, 10, 20, 0.28);
}

.hero-title--dark {
  color: var(--navy-900);
}

.hero-subtitle {
  margin: 12px auto 0;
  max-width: 460px;
  font-size: clamp(1.08rem, 2.2vw, 1.54rem);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 16px 28px rgba(4, 10, 20, 0.22);
}

.hero-subtitle--dark {
  max-width: 760px;
  margin-left: 0;
  color: var(--slate-600);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions--hero {
  width: min(560px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-actions--hero .button {
  width: 100%;
  min-height: 62px;
}

.hero-actions--hero .button--primary {
  background: linear-gradient(135deg, #2f65c7, #4f84e8);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(47, 101, 199, 0.34);
}

.hero-actions--left {
  justify-content: flex-start;
}

.hero-meta {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metric {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  text-align: left;
}

.hero-metric strong {
  display: block;
  font-size: 1.9rem;
  color: var(--gold-300);
}

.hero-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.08);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 86px) 0 92px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 36, 0.32), rgba(6, 18, 36, 0.9)),
    radial-gradient(circle at top right, rgba(200, 164, 101, 0.24), transparent 30%);
}

.page-hero__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.page-hero__title {
  margin: 18px 0 20px;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.page-hero__copy {
  max-width: 700px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--soft {
  color: var(--slate-500);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 70px 0;
}

.stat-showcase {
  position: relative;
  z-index: 4;
  margin-top: -92px;
  padding-top: 0;
}

.section-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--navy-900);
}

.section-copy {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.02rem;
}

.surface-panel {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 27, 46, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.surface-panel--dark {
  background:
    linear-gradient(135deg, rgba(7, 18, 36, 0.92), rgba(17, 35, 67, 0.9));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.stat-grid,
.brand-grid,
.country-grid,
.sector-grid,
.pillars-grid,
.investor-grid,
.resource-grid,
.contact-cards,
.allocation-grid {
  display: grid;
  gap: 22px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-media {
  position: relative;
  height: 212px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(236, 240, 245, 0.92), rgba(255, 255, 255, 0.92));
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0.02), rgba(6, 18, 36, 0.18));
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media--short {
  height: 196px;
}

.stat-card,
.brand-card,
.country-card,
.pillar-card,
.investor-card,
.resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 251, 253, 0.7));
  border: 1px solid rgba(12, 24, 48, 0.08);
  box-shadow: var(--shadow-md);
}

.stat-card__body,
.brand-card__body,
.country-card__body,
.pillar-card__body,
.investor-card__body,
.resource-card__body {
  padding: 24px 26px 28px;
}

.stat-value {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 3rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-500);
}

.stat-label {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.stat-note {
  margin: 0;
  color: var(--slate-600);
}

.stat-counter {
  display: grid;
  gap: 4px;
  margin: 14px 0 14px;
}

.stat-counter strong {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stat-counter span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 28px;
  align-items: stretch;
}

.image-frame {
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.content-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-card p:last-child {
  margin-bottom: 0;
}

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

.sector-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.sector-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sector-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100%;
  padding: 34px;
}

.sector-card__body h3,
.project-card__body h3,
.country-card h3,
.investor-card h3,
.resource-card h3,
.pillar-card h3,
.country-detail__content h3 {
  margin: 0 0 14px;
  font-size: 2.4rem;
}

.sector-card__body p:last-of-type {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-card {
  gap: 0;
}

.brand-card__logo {
  display: grid;
  place-items: center;
  width: 124px;
  height: 86px;
  margin: -42px 24px 0;
  padding: 16px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 245, 0.96));
  border: 1px solid rgba(12, 24, 48, 0.08);
  box-shadow: 0 16px 28px rgba(7, 17, 31, 0.12);
}

.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card__body {
  padding-top: 18px;
}

.brand-card__body h3 {
  margin: 0 0 8px;
  font-size: 2.1rem;
}

.brand-card__body p:last-child {
  margin-bottom: 0;
  color: var(--slate-600);
}

.country-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-card {
  gap: 0;
}

.country-card__media {
  position: relative;
  height: 240px;
}

.country-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0.08), rgba(6, 18, 36, 0.76));
}

.country-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card__overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: var(--white);
}

.country-card__overlay .eyebrow--soft {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.country-card__overlay h3 {
  color: var(--white);
}

.country-badge {
  display: inline-grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--country-accent), rgba(255, 255, 255, 0.92));
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.country-card__summary,
.country-card__opportunity,
.country-detail__content > p:last-of-type {
  color: var(--slate-600);
}

.country-card__summary {
  margin-top: 0;
}

.entity-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.entity-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(236, 240, 245, 0.84), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(12, 24, 48, 0.05);
}

.entity-list strong {
  font-size: 0.98rem;
  color: var(--navy-900);
}

.entity-list span {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.country-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.country-detail--reverse .country-detail__media {
  order: 2;
}

.country-detail__media,
.country-detail__content {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.country-detail__media {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.country-detail__overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px;
  color: var(--white);
}

.country-detail__overlay h3 {
  margin: 18px 0 10px;
  font-size: 3.1rem;
}

.country-detail__content {
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(12, 24, 48, 0.08);
  box-shadow: var(--shadow-md);
}

.entity-list--detail {
  margin-top: 26px;
}

.mini-logo-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}

.mini-logo {
  display: inline-grid;
  place-items: center;
  width: 98px;
  height: 74px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(12, 24, 48, 0.08);
}

.mini-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pillars-grid,
.investor-grid,
.allocation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card,
.investor-card,
.resource-card {
  gap: 0;
}

.pillar-card p,
.investor-card p,
.resource-card p {
  color: var(--slate-600);
  margin-bottom: 0;
}

.resource-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.resource-card__body .button {
  margin-top: 24px;
}

.project-stack {
  display: grid;
  gap: 28px;
}

.signature-projects-grid {
  display: grid;
  gap: 28px;
}

.signature-project-card .signature-project__media {
  position: relative;
  inset: auto;
  height: 320px;
  min-height: 320px;
  background: none;
  box-shadow: none;
}

.signature-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature-project__body {
  gap: 24px;
  padding: 30px 22px 30px;
}

.signature-project__header {
  display: grid;
  gap: 16px;
}

.signature-project__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(87, 116, 196, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 244, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-project__summary {
  max-width: 70ch;
  font-size: 1.04rem;
}

.signature-project__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.signature-project__metric {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(93, 122, 203, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.signature-project__metric span {
  color: rgba(190, 232, 239, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-project__metric strong {
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.2;
}

.signature-project__highlights {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signature-project__highlights li {
  position: relative;
  padding-left: 22px;
  color: rgba(233, 237, 246, 0.82);
  line-height: 1.72;
}

.signature-project__highlights li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38d7df, #7f66ff);
  transform: translateY(-50%);
}

.signature-project__note {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 18px 18px 0;
  border-top: 1px solid rgba(93, 122, 203, 0.22);
}

.signature-project__note span {
  color: rgba(190, 232, 239, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-project__note p {
  margin: 0;
  color: rgba(240, 244, 255, 0.9);
  line-height: 1.7;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 24, 48, 0.08);
  box-shadow: var(--shadow-lg);
}

.project-card__media {
  min-height: 420px;
  background: linear-gradient(180deg, rgba(236, 240, 245, 0.92), rgba(255, 255, 255, 0.92));
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__body {
  padding: 34px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate-600);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  transform: translateY(-50%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(6, 18, 36, 0.72);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.quote-card {
  display: grid;
  gap: 24px;
}

.quote-card__quote {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
}

.quote-card__meta strong {
  display: block;
  font-size: 1.1rem;
}

.quote-card__meta span {
  color: rgba(255, 255, 255, 0.7);
}

.allocation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.cta-banner {
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(6, 18, 36, 0.94), rgba(17, 36, 68, 0.9)),
    radial-gradient(circle at top right, rgba(200, 164, 101, 0.22), transparent 34%);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
}

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

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(12, 24, 48, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-card p {
  margin: 0 0 8px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.94rem;
  color: var(--navy-800);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 24, 48, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(200, 164, 101, 0.88);
  box-shadow: 0 0 0 4px rgba(200, 164, 101, 0.16);
}

.field textarea {
  min-height: 158px;
  resize: vertical;
}

.form-feedback {
  margin: 0;
  color: var(--slate-600);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #20b15a, #168548);
  color: var(--white);
  box-shadow: 0 24px 44px rgba(22, 133, 72, 0.32);
}

.whatsapp-float__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.whatsapp-float__copy {
  display: grid;
  line-height: 1.15;
}

.whatsapp-float__copy strong {
  font-size: 0.96rem;
}

.whatsapp-float__copy span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  margin-top: 32px;
  padding: 42px 0 24px;
  background:
    linear-gradient(180deg, rgba(6, 18, 36, 0.98), rgba(6, 18, 36, 1));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 34px;
}

.footer-eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.footer-brand {
  margin: 0 0 12px;
  font-size: 2.8rem;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
}

.footer-links h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.footer-links__list {
  display: grid;
  gap: 12px;
}

.footer-links__list a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links__list--contacts a {
  display: grid;
  gap: 2px;
}

.footer-links__list strong {
  color: var(--white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@media (max-width: 1180px) {
  .stat-grid,
  .brand-grid,
  .pillars-grid,
  .investor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-meta,
  .section-head,
  .split-layout,
  .country-detail,
  .project-card,
  .contact-layout,
  .cta-banner__grid,
  .footer-grid,
  .footer-base {
    grid-template-columns: 1fr;
  }

  .country-detail--reverse .country-detail__media {
    order: 0;
  }

  .page-hero {
    padding-bottom: 78px;
  }

  .hero-video__media,
  .hero-video__player {
    min-height: 82svh;
  }
}

@media (max-width: 760px) {
  .hero--video {
    padding-top: calc(var(--header-height) + 8px);
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 56px);
  }

  .hero-video__shell {
    width: min(calc(100% - 12px), var(--max-width));
  }

  .hero-video__overlay {
    padding: calc(var(--header-height) + 48px) 22px 24px;
  }

  .hero-actions--hero {
    gap: 12px;
  }

  .hero-actions--hero .button {
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-meta,
  .stat-grid,
  .signature-project__metrics,
  .sector-grid,
  .country-grid,
  .pillars-grid,
  .investor-grid,
  .resource-grid,
  .contact-cards,
  .brand-grid,
  .allocation-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric,
  .surface-panel,
  .project-card__body,
  .country-detail__content,
  .cta-banner,
  .contact-card,
  .stat-card__body,
  .brand-card__body,
  .country-card__body,
  .pillar-card__body,
  .investor-card__body,
  .resource-card__body {
    padding: 24px;
  }

  .brand-card__logo {
    margin-left: 24px;
  }

  .section {
    padding: 54px 0;
  }

  .section--tight {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 24px;
    gap: 18px;
  }

  .stat-showcase {
    margin-top: -58px;
  }

  .card-media {
    height: 190px;
  }

  .card-media--short {
    height: 176px;
  }

  .country-card__media {
    height: 210px;
  }

  .image-frame,
  .country-detail__media,
  .project-card__media,
  .sector-card {
    min-height: 320px;
  }

  .hero-video__media,
  .hero-video__player {
    min-height: 78svh;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 84px;
  }

  .section {
    padding: 42px 0;
  }

  .section--tight {
    padding: 30px 0;
  }

  .section-head {
    margin-bottom: 18px;
    gap: 14px;
  }

  .site-nav {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-mark {
    padding: 12px 14px;
  }

  .brand-mark__name {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .nav-toggle {
    min-width: 98px;
    min-height: 50px;
  }

  .nav-links {
    width: calc(100vw - 24px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-video__media,
  .hero-video__player {
    min-height: 74svh;
    border-radius: 28px;
  }

  .country-card__overlay {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding-right: 14px;
  }

  .whatsapp-float__copy span {
    font-size: 0.74rem;
  }
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(79, 113, 189, 0.45);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(23, 12, 77, 0.98), rgba(18, 10, 58, 0.98));
  box-shadow: 0 24px 60px rgba(8, 8, 30, 0.22);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #30d5e6 0%, #5ba0ff 50%, #7556ff 100%);
}

.info-card__media {
  margin: 20px 20px 0;
  border-radius: 0;
  overflow: hidden;
}

.info-card__media::after {
  background: linear-gradient(180deg, rgba(11, 8, 38, 0.02), rgba(11, 8, 38, 0.34));
}

.info-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px 26px;
}

.info-card__eyebrow {
  margin: 0;
  color: #38d7df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.info-card__title {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.info-card__copy {
  margin: 0;
  color: rgba(228, 232, 245, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.info-card__link {
  margin-top: auto;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.story-card__media {
  height: 360px;
}

.story-card__body {
  padding: 28px 20px 30px;
}

.story-card__body .section-title {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.info-card.stat-card .stat-value {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.info-card.stat-card .stat-counter strong {
  color: rgba(255, 255, 255, 0.96);
}

.info-card.stat-card .stat-counter span {
  color: rgba(191, 231, 239, 0.82);
}

.info-card.stat-card .stat-label,
.info-card.country-card .info-card__title,
.info-card.country-detail .info-card__title,
.info-card.gallery-card .info-card__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.info-card.brand-card .brand-card__logo {
  width: 118px;
  height: 82px;
  margin: 0;
  padding: 14px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  box-shadow: none;
}

.country-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card .country-badge {
  width: 54px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--country-accent), rgba(255, 255, 255, 0.9));
}

.info-card .entity-list li {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 129, 190, 0.18);
}

.info-card .entity-list strong {
  color: var(--white);
}

.info-card .entity-list span,
.info-card .feature-list li {
  color: rgba(228, 232, 245, 0.78);
}

.info-card .feature-list li::before {
  background: linear-gradient(135deg, #38d7df, #7f66ff);
}

.info-card.sector-card,
.info-card.brand-card,
.info-card.country-card,
.info-card.pillar-card,
.info-card.investor-card,
.info-card.resource-card,
.info-card.gallery-card,
.info-card.project-card,
.info-card.country-detail {
  min-height: 100%;
}

.info-card.sector-card .sector-card__image,
.info-card.project-card .project-card__media,
.info-card.country-detail .country-detail__media,
.info-card.country-card .country-card__media {
  height: 250px;
  min-height: 250px;
  background: none;
  box-shadow: none;
}

.info-card.sector-card {
  justify-content: flex-start;
}

.info-card.sector-card .sector-card__image {
  position: relative;
  inset: auto;
  height: 276px;
  min-height: 276px;
}

.info-card.sector-card .sector-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-card.sector-card .sector-card__content {
  display: grid;
  gap: 18px;
}

.info-card.sector-card .sector-card__body {
  justify-content: space-between;
  gap: 26px;
  min-height: 344px;
  padding: 28px 20px 26px;
}

.info-card.sector-card .info-card__eyebrow {
  font-size: 0.84rem;
  letter-spacing: 0.28em;
}

.info-card.sector-card .info-card__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.info-card.sector-card .info-card__copy {
  max-width: 28ch;
  font-size: 1.06rem;
  line-height: 1.74;
  color: rgba(233, 237, 246, 0.8);
}

.info-card.sector-card .sector-card__cta {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.info-card.story-card .story-card__media,
.info-card.brand-card .card-media,
.info-card.country-card .country-card__media,
.info-card.country-detail .country-detail__media,
.info-card.pillar-card .card-media,
.info-card.investor-card .card-media,
.info-card.resource-card .card-media,
.info-card.gallery-card .card-media,
.info-card.project-card .project-card__media {
  position: relative;
  inset: auto;
  height: 270px;
  min-height: 270px;
  background: none;
  box-shadow: none;
}

.info-card.story-card .story-card__media img,
.info-card.brand-card .card-media img,
.info-card.country-card .country-card__media img,
.info-card.country-detail .country-detail__media img,
.info-card.pillar-card .card-media img,
.info-card.investor-card .card-media img,
.info-card.resource-card .card-media img,
.info-card.gallery-card .card-media img,
.info-card.project-card .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-card.story-card .story-card__body,
.info-card.brand-card .brand-card__body,
.info-card.country-card .country-card__body,
.info-card.country-detail .country-detail__content,
.info-card.pillar-card .pillar-card__body,
.info-card.investor-card .investor-card__body,
.info-card.resource-card .resource-card__body,
.info-card.gallery-card .info-card__body,
.info-card.project-card .project-card__body {
  justify-content: flex-start;
  gap: 18px;
  min-height: 300px;
  padding: 28px 20px 26px;
}

.info-card.story-card .section-title,
.info-card.brand-card .info-card__title,
.info-card.country-card .info-card__title,
.info-card.country-detail .info-card__title,
.info-card.pillar-card .info-card__title,
.info-card.investor-card .info-card__title,
.info-card.resource-card .info-card__title,
.info-card.gallery-card .info-card__title,
.info-card.project-card .info-card__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.info-card.story-card .info-card__copy,
.info-card.brand-card .info-card__copy,
.info-card.country-card .info-card__copy,
.info-card.country-detail .info-card__copy,
.info-card.pillar-card .info-card__copy,
.info-card.investor-card .info-card__copy,
.info-card.resource-card .info-card__copy,
.info-card.project-card .info-card__copy {
  color: rgba(233, 237, 246, 0.8);
}

.info-card.story-card .info-card__actions,
.info-card.resource-card .info-card__link,
.info-card.project-card .feature-list,
.info-card.country-card .entity-list,
.info-card.country-detail .entity-list,
.info-card.country-detail .mini-logo-row {
  margin-top: auto;
}

.info-card.brand-card .brand-card__logo {
  width: 132px;
  height: 88px;
  margin: 0 0 4px;
  padding: 16px;
}

.info-card.country-card .country-card__head,
.info-card.country-detail .country-card__head {
  align-items: center;
}

.info-card.country-card .entity-list,
.info-card.country-detail .entity-list,
.info-card.project-card .feature-list {
  margin-bottom: 0;
}

.info-card.gallery-card .info-card__body {
  min-height: 220px;
}

.info-card.gallery-card .info-card__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.info-card.project-card,
.info-card.country-detail {
  display: flex;
  grid-template-columns: none;
  gap: 0;
}

.info-card.project-card .project-card__body,
.info-card.country-detail .country-detail__content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.info-card.country-detail {
  margin-bottom: 28px;
}

.info-card.country-detail .mini-logo {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
}

.info-card.gallery-card {
  min-height: 100%;
  box-shadow: 0 24px 60px rgba(8, 8, 30, 0.22);
}

.info-card.gallery-card .info-card__body {
  gap: 10px;
}

.quote-card__quote {
  color: var(--white);
}

.quote-card__meta span {
  color: rgba(228, 232, 245, 0.72);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
}

.whatsapp-float__copy {
  display: none;
}

@media (max-width: 980px) {
  .story-card__media {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .info-card__media {
    margin: 16px 16px 0;
  }

  .info-card__body {
    padding: 22px 16px 24px;
  }

  .story-card__media,
  .signature-project-card .signature-project__media,
  .info-card.sector-card .sector-card__image,
  .info-card.brand-card .card-media,
  .info-card.project-card .project-card__media,
  .info-card.country-detail .country-detail__media,
  .info-card.country-card .country-card__media,
  .info-card.pillar-card .card-media,
  .info-card.investor-card .card-media,
  .info-card.resource-card .card-media,
  .info-card.gallery-card .card-media {
    height: 220px;
    min-height: 220px;
  }

  .info-card__title,
  .story-card__body .section-title,
  .info-card.stat-card .stat-label,
  .info-card.country-card .info-card__title,
  .info-card.country-detail .info-card__title,
  .info-card.gallery-card .info-card__title {
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }

  .info-card.sector-card .info-card__copy {
    max-width: none;
  }

  .info-card.sector-card .sector-card__body {
    min-height: auto;
  }

  .info-card.story-card .story-card__body,
  .signature-project-card .signature-project__body,
  .info-card.brand-card .brand-card__body,
  .info-card.country-card .country-card__body,
  .info-card.country-detail .country-detail__content,
  .info-card.pillar-card .pillar-card__body,
  .info-card.investor-card .investor-card__body,
  .info-card.resource-card .resource-card__body,
  .info-card.gallery-card .info-card__body,
  .info-card.project-card .project-card__body {
    min-height: auto;
  }

  .info-card__actions {
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}

body[data-page="accueil"] {
  background: #ffffff;
}

body[data-page="accueil"]::before {
  opacity: 0;
}

body[data-page="accueil"] .site-header {
  padding-top: 0;
}

body[data-page="accueil"] .site-header.is-scrolled,
body[data-page="accueil"] .site-header.is-menu-open {
  background: linear-gradient(180deg, rgba(10, 20, 35, 0.84), rgba(10, 20, 35, 0.58));
  backdrop-filter: blur(14px);
  box-shadow: none;
  border-bottom: 0;
}

body[data-page="accueil"] .site-nav {
  width: min(calc(100% - 28px), 1280px);
  min-height: 92px;
  padding-top: 18px;
}

body[data-page="accueil"] .brand-mark {
  padding: 14px 20px;
  border: 1px solid rgba(10, 20, 35, 0.14);
  background: rgba(30, 44, 66, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(6, 18, 36, 0.12);
  color: #f3f6fb;
}

body[data-page="accueil"] .brand-mark__name {
  font-size: clamp(0.76rem, 1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  color: #f6f8fc;
  text-shadow: none;
  white-space: nowrap;
}

body[data-page="accueil"] .nav-toggle {
  min-width: 104px;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: rgba(60, 74, 93, 0.36);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body[data-page="accueil"] .nav-toggle span {
  font-size: 1rem;
  font-weight: 600;
}

body[data-page="accueil"] .nav-links {
  top: calc(100% + 12px);
}

body[data-page="accueil"] .nav-links__panel {
  border-radius: 18px;
  background: rgba(10, 20, 35, 0.9);
}

body[data-page="accueil"] .hero--video {
  padding: 0;
}

body[data-page="accueil"] .hero-video__shell {
  width: 100%;
}

body[data-page="accueil"] .hero-video__media {
  min-height: 100svh;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="accueil"] .hero-video__media::after {
  background:
    linear-gradient(180deg, rgba(10, 20, 35, 0.12) 0%, rgba(10, 20, 35, 0.08) 34%, rgba(10, 20, 35, 0.18) 64%, rgba(10, 20, 35, 0.34) 100%),
    radial-gradient(circle at top, rgba(214, 230, 248, 0.12), transparent 44%);
}

body[data-page="accueil"] .hero-video__player {
  min-height: 100svh;
  border-radius: 0;
  object-position: center center;
}

body[data-page="accueil"] .hero-video__overlay {
  padding: 108px 24px 36px;
}

body[data-page="accueil"] .hero-video__content {
  width: min(520px, 100%);
  padding-top: 42px;
}

body[data-page="accueil"] .hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--white);
  text-shadow: 0 4px 18px rgba(5, 12, 24, 0.22);
}

body[data-page="accueil"] .hero-subtitle {
  margin: 12px auto 0;
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.14rem, 2vw, 1.66rem);
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.96);
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 3px 16px rgba(5, 12, 24, 0.18);
}

body[data-page="accueil"] .hero-video__rule {
  display: none;
}

body[data-page="accueil"] .hero-actions--hero {
  width: min(720px, 100%);
  margin-top: 28px;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="accueil"] .hero-actions--hero .button {
  min-height: 56px;
  width: 100%;
  border-radius: 7px;
  padding: 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
}

body[data-page="accueil"] .hero-actions--hero .button--primary {
  background: #3e6ae1;
  color: var(--white);
}

body[data-page="accueil"] .hero-actions--hero .button--light {
  background: rgba(255, 255, 255, 0.96);
  color: #1a2230;
}

body[data-page="accueil"] .hero-video__dots {
  margin-bottom: 4px;
}

body[data-page="accueil"] .hero-video__dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

body[data-page="accueil"] .hero-video__dot--active {
  background: rgba(255, 255, 255, 0.92);
}

body[data-page="accueil"] .section.section--tight.stat-showcase {
  margin-top: 0;
  padding: 20px 0 18px;
  background: var(--white);
}

body[data-page="accueil"] .section {
  padding: 58px 0;
}

body[data-page="accueil"] .section--tight {
  padding: 40px 0;
}

body[data-page="accueil"] .section-head {
  margin-bottom: 26px;
  gap: 20px;
}

body[data-page="accueil"] main > .section + .section {
  padding-top: 34px;
}

body[data-page="accueil"] main > .stat-showcase + .section {
  padding-top: 12px;
}

.page-hero + .section {
  padding-top: 58px;
}

.page-hero + .section.section--tight {
  padding-top: 48px;
}

body[data-page="accueil"] .whatsapp-float {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

body[data-page="accueil"].show-whatsapp .whatsapp-float {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 760px) {
  body[data-page="accueil"] .site-nav {
    width: calc(100% - 24px);
    min-height: 78px;
    padding-top: 16px;
  }

  body[data-page="accueil"] .brand-mark__name {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
  }

  body[data-page="accueil"] .nav-toggle {
    min-width: 92px;
    min-height: 48px;
    border-radius: 8px;
  }

  body[data-page="accueil"] .hero-video__overlay {
    padding: 88px 20px 28px;
  }

  body[data-page="accueil"] .hero-video__content {
    width: min(470px, 100%);
    padding-top: 30px;
  }

  body[data-page="accueil"] .hero-title {
    font-size: clamp(2.45rem, 9.6vw, 3.25rem);
  }

  body[data-page="accueil"] .hero-subtitle {
    font-size: clamp(1rem, 3.8vw, 1.3rem);
  }

  body[data-page="accueil"] .hero-video__rule {
    width: 172px;
    margin-top: 8px;
  }

  body[data-page="accueil"] .hero-actions {
    flex-direction: row;
  }

  body[data-page="accueil"] .button {
    width: auto;
  }

  body[data-page="accueil"] .hero-actions--hero {
    gap: 12px;
  }

  body[data-page="accueil"] .hero-actions--hero .button {
    min-height: 52px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  body[data-page="accueil"] .hero-video__media,
  body[data-page="accueil"] .hero-video__player {
    min-height: 100svh;
  }

  body[data-page="accueil"] .section.section--tight.stat-showcase {
    padding: 16px 0 12px;
  }

  body[data-page="accueil"] .section {
    padding: 40px 0;
  }

  body[data-page="accueil"] .section--tight {
    padding: 26px 0;
  }

  body[data-page="accueil"] .section-head {
    margin-bottom: 18px;
    gap: 14px;
  }

  body[data-page="accueil"] main > .section + .section {
    padding-top: 24px;
  }

  body[data-page="accueil"] main > .stat-showcase + .section {
    padding-top: 8px;
  }

  .page-hero + .section {
    padding-top: 42px;
  }

  .page-hero + .section.section--tight {
    padding-top: 34px;
  }
}

@media (max-width: 560px) {
  body[data-page="accueil"] .brand-mark__name {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  body[data-page="accueil"] .nav-toggle {
    min-width: 86px;
    min-height: 46px;
  }

  body[data-page="accueil"] .brand-mark {
    padding: 12px 16px;
  }

  body[data-page="accueil"] .hero-video__overlay {
    padding: 84px 16px 28px;
  }

  body[data-page="accueil"] .hero-title {
    font-size: clamp(2.2rem, 9.4vw, 2.85rem);
  }

  body[data-page="accueil"] .hero-subtitle {
    font-size: 1rem;
  }

  body[data-page="accueil"] .hero-actions--hero {
    gap: 10px;
  }

  body[data-page="accueil"] .hero-actions--hero .button {
    min-height: 50px;
    font-size: 0.84rem;
  }

  body[data-page="accueil"] .section.section--tight.stat-showcase {
    padding: 12px 0 8px;
  }

  body[data-page="accueil"] .section {
    padding: 30px 0;
  }

  body[data-page="accueil"] .section--tight {
    padding: 20px 0;
  }

  body[data-page="accueil"] .section-head {
    margin-bottom: 14px;
    gap: 12px;
  }

  body[data-page="accueil"] main > .section + .section {
    padding-top: 18px;
  }

  body[data-page="accueil"] main > .stat-showcase + .section {
    padding-top: 4px;
  }

  .page-hero + .section {
    padding-top: 36px;
  }

  .page-hero + .section.section--tight {
    padding-top: 30px;
  }
}
