:root {
  --navy: #0c1a2a;
  --navy-soft: #152536;
  --slate: #3d4f61;
  --mist: #7f90a1;
  --paper: #f3f6f8;
  --white: #ffffff;
  --accent: #0e7c8b;
  --accent-soft: #d7ebef;
  --gold: #a8844f;
  --line: rgba(12, 26, 42, 0.1);
  --shadow: 0 18px 50px rgba(12, 26, 42, 0.08);
  --radius: 2px;
  --font-sans: "Barlow", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body.pila-site {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.hero-title,
.asset-card h3,
.eco-card h3,
.industry-card h3,
.pillar-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--navy);
}

.lede {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #0b6774;
}

.btn-secondary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: #07121d;
  border-color: #07121d;
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(14, 124, 139, 0.35);
  color: var(--navy);
}

.btn-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(243, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.brand-text small {
  color: var(--mist);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-desktop {
  display: none;
  gap: 1.1rem;
}

.nav-desktop a {
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.header-cta {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  gap: 5px;
  place-content: center;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--navy);
}

.nav-mobile {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.25rem 1.4rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  color: var(--navy);
  font-weight: 500;
}

/* Hero — light corporate / airport */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--navy);
  padding: 6.5rem 0 4.5rem;
  overflow: hidden;
  background: #eef3f7;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-fallback,
.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(180deg, #f7fafc 0%, #e8eef3 48%, #d7e3ea 100%);
}

.hero-sky {
  position: absolute;
  inset: 0 0 38%;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 255, 255, 0.9), transparent 42%),
    radial-gradient(ellipse at 78% 8%, rgba(14, 124, 139, 0.12), transparent 40%),
    linear-gradient(180deg, #fbfcfd, #e9f0f4);
}

.hero-terminal {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18%;
  height: 28%;
  border: 1px solid rgba(12, 26, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
  box-shadow: 0 30px 80px rgba(12, 26, 42, 0.05);
}

.hero-terminal::before,
.hero-terminal::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(12, 26, 42, 0.08);
}

.hero-terminal::before {
  left: 33%;
}

.hero-terminal::after {
  left: 66%;
}

.hero-runway {
  position: absolute;
  inset: 48% -12% -20%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(12, 26, 42, 0.07) 0 2px,
      transparent 2px 64px
    ),
    linear-gradient(180deg, rgba(215, 227, 234, 0.2), rgba(190, 208, 220, 0.55));
  transform: perspective(780px) rotateX(56deg);
  transform-origin: center top;
}

.hero-mist {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(238, 243, 247, 0.92));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-overlay__wash,
.hero-overlay__vignette,
.hero-overlay__accent,
.hero-overlay__sheen,
.hero-overlay__base {
  position: absolute;
  inset: 0;
}

.hero-overlay__wash {
  background: linear-gradient(
    105deg,
    rgba(247, 250, 252, 0.72) 0%,
    rgba(247, 250, 252, 0.38) 34%,
    rgba(247, 250, 252, 0.08) 62%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-overlay__vignette {
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(12, 26, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 26, 42, 0.08), transparent 28%, transparent 62%, rgba(12, 26, 42, 0.22));
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.hero-overlay__accent {
  background:
    linear-gradient(135deg, rgba(14, 124, 139, 0.18) 0%, transparent 42%),
    linear-gradient(0deg, rgba(14, 124, 139, 0.12), transparent 40%);
}

.hero-overlay__sheen {
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 64%
  );
  transform: translateX(-35%);
  animation: heroSheen 9s ease-in-out infinite;
  opacity: 0.65;
}

.hero-overlay__base {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(238, 243, 247, 0.28));
  border-bottom: 1px solid rgba(12, 26, 42, 0.06);
}

.hero--has-video .hero-overlay__wash,
.hero--has-image .hero-overlay__wash {
  background: linear-gradient(
    105deg,
    rgba(247, 250, 252, 0.78) 0%,
    rgba(247, 250, 252, 0.42) 36%,
    rgba(247, 250, 252, 0.1) 64%,
    transparent 100%
  );
}

@keyframes heroSheen {
  0%,
  18% {
    transform: translateX(-40%);
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  58% {
    transform: translateX(35%);
    opacity: 0.15;
  }
  100% {
    transform: translateX(45%);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 42rem;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.8rem, 14vw, 7.5rem);
  letter-spacing: 0.08em;
}

.hero-subtitle {
  margin: 0.8rem 0 0;
  color: var(--navy-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 500;
}

.hero-copy {
  margin: 1rem 0 0;
  color: var(--slate);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  color: var(--mist);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-hint i {
  width: 1px;
  height: 28px;
  background: var(--accent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Masterplan — professional digital precinct console */
.masterplan {
  position: relative;
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
  overflow: hidden;
}

.masterplan-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(14, 124, 139, 0.08), transparent 42%),
    radial-gradient(ellipse at 85% 70%, rgba(12, 26, 42, 0.04), transparent 45%);
  pointer-events: none;
}

.masterplan-grid {
  display: grid;
  gap: 1.25rem;
}

.masterplan-stage,
.asset-card,
.eco-card,
.board,
.route-panel,
.industry-card,
.advisor-panel,
.invest-board,
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.masterplan-stage {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stage-chrome {
  border: 1px solid rgba(14, 124, 139, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-chrome__top,
.stage-chrome__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #f8fbfc, #eef4f7);
  border-bottom: 1px solid rgba(14, 124, 139, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

.stage-chrome__bottom {
  border-bottom: 0;
  border-top: 1px solid rgba(14, 124, 139, 0.12);
}

.stage-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 600;
}

.stage-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(14, 124, 139, 0.45);
  animation: livePulse 2s infinite;
}

.stage-meta,
.stage-coords {
  color: var(--mist);
}

.stage-viewport {
  position: relative;
  background:
    linear-gradient(180deg, #f4f8fb 0%, #e7eef3 100%);
}

.schematic {
  position: relative;
}

.schematic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 124, 139, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 124, 139, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
  pointer-events: none;
}

.schematic-svg,
.stage-photo {
  width: 100%;
  height: auto;
  display: block;
}

.stage-corners span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(14, 124, 139, 0.45);
  z-index: 2;
  pointer-events: none;
}

.stage-corners span:nth-child(1) {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.stage-corners span:nth-child(2) {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}

.stage-corners span:nth-child(3) {
  bottom: 10px;
  left: 10px;
  border-right: 0;
  border-top: 0;
}

.stage-corners span:nth-child(4) {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

.plot {
  cursor: pointer;
  transition: 0.25s ease;
}

.plot-group {
  cursor: pointer;
}

.plot-group.is-active .plot,
.plot-group:hover .plot {
  fill: url(#padActive);
  stroke: #0e7c8b;
  stroke-width: 2.5;
  filter: url(#softGlow);
}

.plot-label {
  fill: var(--navy);
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  pointer-events: none;
}

.plot-sub {
  fill: var(--slate);
  font-size: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.hub-pulse {
  animation: hubPulse 2.8s ease-out infinite;
  transform-origin: 300px 200px;
}

@keyframes hubPulse {
  0% {
    r: 14;
    opacity: 0.55;
  }
  70% {
    r: 28;
    opacity: 0;
  }
  100% {
    r: 28;
    opacity: 0;
  }
}

.asset-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.4rem 1.4rem 1.55rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.98));
}

.asset-card__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(14, 124, 139, 0.15));
}

.asset-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.asset-card-top .eyebrow {
  margin-bottom: 0.4rem;
}

.status {
  border: 1px solid rgba(14, 124, 139, 0.3);
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.35rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.asset-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.asset-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.asset-metric {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: rgba(14, 124, 139, 0.04);
}

.asset-metric span {
  display: block;
  color: var(--mist);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-metric strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
}

.asset-features-label {
  margin: 0 0 0.7rem;
  color: var(--mist);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.asset-features-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  margin-bottom: 0.15rem;
}

.asset-card ul,
.eco-card ul,
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.asset-features {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 124, 139, 0.35) transparent;
}

.asset-features::-webkit-scrollbar {
  width: 5px;
}

.asset-features::-webkit-scrollbar-thumb {
  background: rgba(14, 124, 139, 0.3);
  border-radius: 999px;
}

.asset-features-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8px;
  bottom: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 251, 252, 0.98));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.asset-features-wrap.has-overflow::after {
  opacity: 1;
}

.asset-features-wrap.is-scrolled-end::after {
  opacity: 0;
}

.asset-features li,
.eco-card li {
  position: relative;
  padding: 0.55rem 0.65rem 0.55rem 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--slate);
  background: rgba(243, 247, 249, 0.8);
  border: 1px solid rgba(12, 26, 42, 0.04);
}

.asset-features li::before,
.eco-card li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.asset-features.is-updating {
  opacity: 0.35;
  transform: translateY(4px);
  transition: 0.18s ease;
}

.building-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.1rem;
  flex-shrink: 0;
}

.building-tab {
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0.55rem;
  color: var(--slate);
  cursor: pointer;
  text-align: left;
  transition: 0.2s ease;
}

.building-tab__code {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.building-tab__status {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

.building-tab.is-active,
.building-tab:hover {
  border-color: var(--accent);
  color: var(--navy);
  background: rgba(14, 124, 139, 0.08);
}

.building-tab.is-active .building-tab__status {
  color: var(--accent);
}

/* Ecosystem — professional system stack */
.ecosystem {
  position: relative;
  background: linear-gradient(180deg, #eef3f7 0%, #f7fafc 100%);
  overflow: hidden;
}

.ecosystem-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(14, 124, 139, 0.07), transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(12, 26, 42, 0.04), transparent 45%);
  pointer-events: none;
}

.eco-shell {
  border: 1px solid rgba(14, 124, 139, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eco-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(14, 124, 139, 0.12);
  background: linear-gradient(180deg, #f8fbfc, #eef4f7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.eco-shell__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 600;
}

.eco-shell__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(14, 124, 139, 0.45);
  animation: livePulse 2s infinite;
}

.eco-grid {
  display: grid;
  gap: 0;
}

.eco-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(14, 124, 139, 0.1);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: background 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.eco-card:first-child {
  border-top: 0;
}

.eco-card:hover {
  background: rgba(14, 124, 139, 0.035);
  transform: none;
  box-shadow: none;
}

.eco-card__visual {
  position: relative;
  min-height: 110px;
  padding: 0.75rem 1rem 0;
  background:
    linear-gradient(180deg, rgba(14, 124, 139, 0.06), transparent 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent);
  border-bottom: 1px solid rgba(14, 124, 139, 0.08);
}

.eco-viz {
  width: 100%;
  height: 96px;
}

.eco-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.eco-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.eco-index {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.eco-tagline {
  color: var(--mist);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eco-card h3 {
  margin: 0 0 0.95rem;
  font-size: 1.35rem;
}

.eco-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-points li {
  position: relative;
  padding: 0.5rem 0.55rem 0.5rem 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--slate);
  background: rgba(243, 247, 249, 0.85);
  border: 1px solid rgba(12, 26, 42, 0.04);
}

.eco-points li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* Why — simple performance markers */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  gap: 0.85rem;
}

.why-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 124, 139, 0.15));
}

.why-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14, 124, 139, 0.2);
  background: rgba(14, 124, 139, 0.08);
  color: var(--accent);
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
}

.why-card__index {
  display: block;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.why-card__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.why-card__label {
  display: block;
  margin-top: 0.7rem;
  color: var(--slate);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.board,
.invest-board {
  overflow: hidden;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: #f8fafb;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.board-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(14, 124, 139, 0.45);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 10px rgba(14, 124, 139, 0);
  }
}

.board-meta {
  margin-left: auto;
  color: var(--mist);
}

.stats-grid,
.metric-grid {
  display: grid;
}

.stat-cell,
.metric-cell {
  padding: 1.4rem 1.2rem;
  border-top: 1px solid var(--line);
}

.stat-value,
.metric-cell strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1;
}

.stat-cell span,
.metric-cell span {
  display: block;
  margin-top: 0.55rem;
  color: var(--mist);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-cell p {
  margin: 0.45rem 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

/* Location */
.location {
  background: var(--paper);
}

.route-panel {
  padding: 1.25rem;
}

.route-map {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at 52% 55%, rgba(14, 124, 139, 0.12), transparent 42%),
    linear-gradient(180deg, #edf3f6, #e3ebf0);
  border: 1px solid var(--line);
  overflow: hidden;
}

.route-svg {
  width: 100%;
  height: 280px;
}

.route-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.45;
  stroke-dasharray: 2 2;
  opacity: 0.7;
  animation: routeFlow 18s linear infinite;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -80;
  }
}

.hub-dot {
  fill: var(--accent);
}

.hub-ring {
  fill: none;
  stroke: var(--accent);
  stroke-opacity: 0.35;
}

.route-label {
  position: absolute;
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.route-label.is-hub {
  border-color: rgba(14, 124, 139, 0.35);
  color: var(--accent);
  font-weight: 600;
}

.route-label--penang { left: 46%; top: 48%; }
.route-label--china { left: 58%; top: 18%; }
.route-label--singapore { left: 52%; top: 70%; }
.route-label--thailand { left: 38%; top: 38%; }
.route-label--vietnam { left: 56%; top: 32%; }
.route-label--indonesia { left: 64%; top: 74%; }
.route-label--japan { left: 74%; top: 20%; }

.route-message {
  margin: 1rem 0 0;
  color: var(--slate);
  text-align: center;
}

/* Industries */
.industries {
  background: var(--white);
}

.industry-grid {
  display: grid;
  gap: 1rem;
}

.industry-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
}

.industry-visual {
  height: 160px;
  background: #d9e4eb;
  overflow: hidden;
}

.industry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #c7d5df 0%, #e8eef2 50%, #b7c9d4 100%);
}

.industry-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.industry-body h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.35rem;
}

.industry-body p:last-child {
  margin: 0;
  color: var(--slate);
}

/* Advisor */
.advisor {
  background: var(--navy);
  color: var(--white);
}

.advisor .eyebrow {
  color: #8fd0d8;
}

.advisor .lede,
.advisor-note {
  color: rgba(255, 255, 255, 0.75);
}

.advisor-grid {
  display: grid;
  gap: 1.5rem;
}

.advisor .section-heading {
  margin-bottom: 0;
}

.advisor-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  padding: 1.4rem;
}

.advisor-panel-title {
  margin: 0 0 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #8fd0d8;
}

.advisor-prompts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-prompts li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.advisor-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

/* Invest */
.invest {
  background: var(--paper);
}

.invest-layout {
  display: grid;
  gap: 1.25rem;
}

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

.pillar-card {
  padding: 1.2rem 1.25rem;
  margin-bottom: 0.85rem;
}

.pillar-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.2rem;
}

.pillar-card p {
  margin: 0;
  color: var(--slate);
}

.invest-pillars .btn {
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  background: var(--navy-soft);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin: 1rem 0;
  max-width: 28rem;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-title {
  margin: 0 0 0.8rem;
  color: #8fd0d8;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.footer-grid a:hover {
  color: #8fd0d8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.hero-fade {
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

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

  .why-grid,
  .eco-grid,
  .industry-grid,
  .stats-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eco-grid {
    gap: 0;
  }

  .eco-card {
    border-top: 0;
    border-right: 1px solid rgba(14, 124, 139, 0.1);
    border-bottom: 1px solid rgba(14, 124, 139, 0.1);
  }

  .eco-card:nth-child(2n) {
    border-right: 0;
  }

  .eco-card:nth-child(-n+2) {
    border-top: 0;
  }

  .stat-cell:nth-child(2),
  .metric-cell:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .route-label--china,
  .route-label--singapore,
  .route-label--thailand,
  .route-label--vietnam,
  .route-label--indonesia,
  .route-label--japan {
    display: inline-block;
  }
}

@media (max-width: 639px) {
  .route-label:not(.is-hub) {
    display: none;
  }

  .brand-text small {
    display: none;
  }
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }

  .hero {
    padding: 0;
  }

  .masterplan-grid,
  .advisor-grid,
  .invest-layout,
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .masterplan-grid {
    align-items: stretch;
  }

  .masterplan-stage,
  .stage-chrome,
  .asset-card {
    height: 100%;
  }

  .stage-chrome {
    display: flex;
    flex-direction: column;
  }

  .stage-viewport {
    flex: 1 1 auto;
  }

  .asset-features {
    max-height: none;
    height: 100%;
  }

  .asset-features-wrap {
    display: flex;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

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

@media (min-width: 1100px) {
  .why-grid,
  .stats-grid,
  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-cell,
  .metric-cell {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .stat-cell:first-child,
  .metric-cell:first-child {
    border-left: 0;
  }
}

/* Header tools + language */
.header-tools {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(14, 124, 139, 0.25);
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--slate);
  min-width: 64px;
  min-height: 42px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--accent);
  color: var(--white);
}

.lang-switch--mobile {
  margin-bottom: 0.5rem;
  width: fit-content;
}

.linkish {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.linkish:hover {
  color: #8fd0d8;
}

/* Highlights */
.highlights {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f4f8fa 0%, var(--paper) 55%, #eef5f7 100%);
}

.highlights-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.highlights-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: highlightOrb 12s ease-in-out infinite alternate;
}

.highlights-orb--a {
  top: -8%;
  left: -4%;
  width: 280px;
  height: 280px;
  background: rgba(14, 124, 139, 0.18);
}

.highlights-orb--b {
  right: -6%;
  bottom: -12%;
  width: 320px;
  height: 320px;
  background: rgba(20, 48, 80, 0.12);
  animation-delay: -4s;
}

@keyframes highlightOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, 14px, 0) scale(1.08); }
}

.highlight-grid {
  display: grid;
  gap: 0.85rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 124, 139, 0.15));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 124, 139, 0.32);
  box-shadow: 0 18px 36px rgba(14, 48, 80, 0.1);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.highlight-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent);
  border: 1px solid rgba(14, 124, 139, 0.22);
  background:
    radial-gradient(circle at 30% 25%, rgba(14, 124, 139, 0.16), transparent 55%),
    rgba(14, 124, 139, 0.07);
  animation: iconFloat 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
}

.highlight-card__icon svg {
  width: 24px;
  height: 24px;
}

.highlight-card__index {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.highlight-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.highlight-card p {
  margin: 0;
  color: var(--slate);
}

.highlight-card__shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  opacity: 0;
}

.highlight-card:hover .highlight-card__shine {
  opacity: 1;
  animation: cardShine 0.85s ease;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes cardShine {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

/* About */
.about {
  position: relative;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfd 48%, #fff 100%);
}

.about-home {
  display: grid;
  gap: 2rem;
}

.about-home__cta {
  margin-top: 1.35rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.nav-desktop a.is-active,
.nav-mobile a.is-active {
  color: var(--accent);
}

.about-vision {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(14, 124, 139, 0.08), rgba(255, 255, 255, 0.9) 55%);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-vision:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(14, 48, 80, 0.08);
}

.about-vision__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
  border: 1px solid rgba(14, 124, 139, 0.22);
  background: rgba(255, 255, 255, 0.85);
  animation: visionPulse 3.2s ease-in-out infinite;
}

.about-vision__icon svg {
  width: 24px;
  height: 24px;
}

.about-vision p:last-child {
  margin: 0.4rem 0 0;
  color: var(--slate);
}

@keyframes visionPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(14, 124, 139, 0.18);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(14, 124, 139, 0);
  }
}

.strength-list {
  display: grid;
  gap: 0.75rem;
}

.strength-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: linear-gradient(180deg, #fff, #f7fafc);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.strength-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.strength-card:hover {
  transform: translateX(4px);
  border-color: rgba(14, 124, 139, 0.28);
  box-shadow: 0 14px 28px rgba(14, 48, 80, 0.08);
}

.strength-card:hover::after {
  transform: scaleY(1);
}

.strength-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
  border: 1px solid rgba(14, 124, 139, 0.2);
  background:
    radial-gradient(circle at 30% 25%, rgba(14, 124, 139, 0.15), transparent 55%),
    rgba(14, 124, 139, 0.06);
  animation: iconFloat 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}

.strength-card__icon svg {
  width: 22px;
  height: 22px;
}

.strength-card__meta {
  margin-bottom: 0.35rem;
}

.strength-card__index {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.strength-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.strength-card p {
  margin: 0;
  color: var(--slate);
}

@media (prefers-reduced-motion: reduce) {
  .highlights-orb,
  .highlight-card__icon,
  .strength-card__icon,
  .about-vision__icon {
    animation: none;
  }

  .highlight-card,
  .strength-card,
  .about-vision {
    transition: none;
  }

  .highlight-card:hover .highlight-card__shine {
    animation: none;
    opacity: 0;
  }
}

/* Matrix blocks under masterplan */
.matrix-block {
  margin-top: 2.5rem;
}

.matrix-block--esg {
  margin-top: 2.75rem;
}

.matrix-title {
  margin: 0 0 1.15rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
}

.matrix-grid {
  display: grid;
  gap: 0.85rem;
}

.matrix-grid--photo {
  gap: 1rem;
}

.matrix-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.matrix-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.matrix-card p {
  margin: 0;
  color: var(--slate);
}

.photo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 124, 139, 0.28);
  box-shadow: 0 20px 40px rgba(14, 48, 80, 0.12);
}

.photo-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d7e3ea;
}

.photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.photo-card:hover .photo-card__media img {
  transform: scale(1.08);
}

.photo-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 48, 0.05) 20%, rgba(10, 28, 48, 0.55) 100%);
  pointer-events: none;
}

.photo-card__index {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: rgba(14, 124, 139, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.photo-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.25rem;
  background:
    linear-gradient(180deg, #fff 0%, #f6fafb 100%);
}

.photo-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.35s ease;
}

.photo-card:hover .photo-card__body::before {
  width: 100%;
}

.photo-card h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.25;
}

.photo-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.photo-card--esg .photo-card__index {
  background: rgba(20, 48, 80, 0.88);
}

.photo-card--esg .photo-card__body::before {
  background: linear-gradient(90deg, #1f6f5b, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .photo-card,
  .photo-card__media img {
    transition: none;
  }

  .photo-card:hover {
    transform: none;
  }

  .photo-card:hover .photo-card__media img {
    transform: scale(1.02);
  }
}

/* Facilities */
.facilities {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef5f8 0%, #f7fafb 42%, #ffffff 100%);
}

.facilities-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 124, 139, 0.12), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(20, 48, 80, 0.08), transparent 32%);
}

.facilities-hero {
  position: relative;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.facilities-hero__copy h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--navy);
  line-height: 1.15;
}

.facilities-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.facilities-pillars li {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(14, 124, 139, 0.22);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.facilities-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(14, 124, 139, 0.14);
  box-shadow: var(--shadow);
  background: #d7e3ea;
}

.facilities-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.facilities-hero__media:hover img {
  transform: scale(1.07);
}

.facilities-hero__frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.facilities-hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(14, 124, 139, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facilities-specs {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.spec-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 124, 139, 0.12));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 124, 139, 0.3);
  box-shadow: 0 18px 34px rgba(14, 48, 80, 0.1);
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  color: var(--accent);
  border: 1px solid rgba(14, 124, 139, 0.22);
  background:
    radial-gradient(circle at 30% 25%, rgba(14, 124, 139, 0.16), transparent 55%),
    rgba(14, 124, 139, 0.06);
  animation: iconFloat 4.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}

.spec-card__icon svg {
  width: 22px;
  height: 22px;
}

.spec-card__index {
  position: absolute;
  top: 1.2rem;
  right: 1.15rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.spec-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--navy);
}

.spec-card p {
  margin: 0;
  color: var(--slate);
}

.facilities-layouts {
  position: relative;
}

.facilities-layouts__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.facilities-layouts__head .matrix-title {
  margin: 0;
}

.layout-grid {
  display: grid;
  gap: 1rem;
}

.layout-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.layout-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 124, 139, 0.28);
  box-shadow: 0 20px 40px rgba(14, 48, 80, 0.12);
}

.layout-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #d7e3ea;
}

.layout-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.layout-card:hover .layout-card__media img {
  transform: scale(1.07);
}

.layout-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 48, 0.05), rgba(10, 28, 48, 0.5));
  pointer-events: none;
}

.layout-card__plan {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 92px;
  padding: 0.4rem;
  color: #fff;
  background: rgba(14, 48, 80, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.floorplan-svg {
  display: block;
  width: 100%;
  height: auto;
}

.layout-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.25rem;
  background: linear-gradient(180deg, #fff, #f6fafb);
}

.layout-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.layout-card__tag {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.layout-card__size {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.layout-card h4 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
}

.layout-card p {
  margin: 0;
  color: var(--slate);
}

@media (min-width: 900px) {
  .facilities-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

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

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

@media (min-width: 700px) and (max-width: 899px) {
  .facilities-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .layout-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spec-card__icon,
  .facilities-hero__media img,
  .layout-card__media img {
    animation: none;
    transition: none;
  }

  .spec-card:hover,
  .layout-card:hover {
    transform: none;
  }
}

/* Media */
.media {
  background: var(--white);
}

.media-grid {
  display: grid;
  gap: 1rem;
}

.media-card {
  padding: 1.2rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: linear-gradient(180deg, #fff, #f7fafc);
  box-shadow: var(--shadow);
}

.media-card p:last-child {
  margin: 0.75rem 0 0;
  color: var(--slate);
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 160px;
  margin-top: 0.75rem;
  border: 1px dashed rgba(14, 124, 139, 0.3);
  background:
    linear-gradient(135deg, rgba(14, 124, 139, 0.08), rgba(12, 26, 42, 0.04));
  color: var(--slate);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.media-placeholder--live {
  color: var(--accent);
}

.media-placeholder--live i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  animation: livePulse 2s infinite;
}

.media-news {
  margin-top: 2rem;
}

.media-centre-cta {
  margin-top: 1.25rem;
}

.news-list {
  display: grid;
  gap: 0.75rem;
}

.news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: var(--white);
}

.news-item > span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.news-item p {
  margin: 0;
  color: var(--slate);
}

/* Contact page */
.contact-page {
  background: #fff;
}

.contact-page__hero {
  position: relative;
  isolation: isolate;
  min-height: min(34rem, 78vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0c1a2a;
}

.contact-page__photo,
.contact-page__veil {
  position: absolute;
  inset: 0;
}

.contact-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  transform: scale(1.06);
}

.contact-page__veil {
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.42) 0%, rgba(7, 14, 24, 0.28) 38%, rgba(7, 14, 24, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 14, 24, 0.55) 0%, transparent 62%);
}

.contact-page__hero-inner {
  position: relative;
  z-index: 1;
  padding: 8.4rem 0 2.6rem;
}

.contact-page__hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-page__hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
}

.contact-page__lead {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.contact-page__chips li {
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-page__badge {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page__body {
  padding: 2.4rem 0 5.5rem;
  background: #f7fafb;
}

.contact-panel {
  display: grid;
  gap: 1.05rem;
  padding: 1.6rem 1.35rem 1.5rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-panel__head h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.contact-panel__head p {
  margin: 0;
  color: var(--mist);
}

.contact-panel__note {
  margin-top: 0.7rem;
  max-width: 40rem;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-types {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-types legend {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

.contact-types__grid {
  display: grid;
  gap: 0.55rem;
}

.contact-type {
  display: block;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(14, 124, 139, 0.16);
  background: #f8fafb;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-type input {
  position: absolute;
  opacity: 0;
}

.contact-type span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}

.contact-type:hover,
.contact-type:has(input:checked) {
  border-color: var(--accent);
  background: rgba(14, 124, 139, 0.08);
}

.contact-type:has(input:checked) {
  transform: translateY(-1px);
}


.contact-panel label {
  display: grid;
  gap: 0.35rem;
}

.contact-panel label > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid rgba(12, 26, 42, 0.14);
  background: #f8fafb;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--navy);
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  outline: 2px solid rgba(14, 124, 139, 0.28);
  outline-offset: 1px;
  border-color: var(--accent);
  background: #fff;
}

.contact-panel textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-panel__row {
  display: grid;
  gap: 0.85rem;
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.contact-success {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.contact-photo[hidden],
.contact-success[hidden] {
  display: none !important;
}

.contact-photo,
.contact-success {
  animation: contact-rise 0.35s ease;
}

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Brochure modal */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 42, 0.55);
}

.modal__dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--white);
  border: 1px solid rgba(14, 124, 139, 0.16);
  box-shadow: 0 30px 80px rgba(12, 26, 42, 0.25);
}

.modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
}

.modal__dialog h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
}

.modal__dialog > p {
  margin: 0 0 1rem;
  color: var(--slate);
}

.modal__form {
  display: grid;
  gap: 0.75rem;
}

.modal__form label {
  display: grid;
  gap: 0.3rem;
}

.modal__form span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

.modal__form input {
  border: 1px solid rgba(12, 26, 42, 0.15);
  background: #f8fafb;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.modal__success {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

@media (min-width: 640px) {
  .highlight-grid,
  .matrix-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card--wide {
    grid-column: 1 / -1;
  }

  .contact-panel__row,
  .contact-types__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .header-tools {
    display: flex;
  }

  .about-grid,
  .about-home {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .contact-panel {
    padding: 2.15rem 2.2rem 2rem;
  }

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

  .contact-page__hero {
    min-height: min(38rem, 80vh);
  }

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

  .media-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .media-card--wide {
    grid-column: auto;
  }
}

/* Inner pages */
.pila-site--inner .site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* About Us page */
.about-page {
  background: var(--white);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    linear-gradient(180deg, #f7fbfd 0%, #fff 48%, #f3f7f9 100%);
}

.about-hero__atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.about-hero__atmosphere span {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.42;
}

.about-hero__atmosphere span:first-child {
  top: -8%;
  left: -6%;
  width: 320px;
  height: 320px;
  background: rgba(14, 124, 139, 0.2);
}

.about-hero__atmosphere span:last-child {
  right: -8%;
  bottom: -12%;
  width: 360px;
  height: 360px;
  background: rgba(20, 48, 80, 0.1);
}

.about-hero__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.about-hero__copy {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}

.about-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}

.about-hero__body {
  margin: 0;
  max-width: 38rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background: #d7e3ea;
  box-shadow: var(--shadow);
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.8s ease;
}

.about-hero__media:hover img {
  transform: scale(1.08);
}

.about-hero__frame {
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.about-hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(14, 124, 139, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-meta {
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0 0;
}

.about-meta dt {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
}

.about-partners {
  position: relative;
  padding: 1.5rem 1.6rem 1.6rem;
  border: 1px solid rgba(14, 124, 139, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.about-partners .eyebrow {
  margin-bottom: 0.85rem;
}

.about-partners__list {
  display: grid;
  gap: 0;
}

.about-partner {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.about-partner:first-of-type {
  border-top: 0;
  padding-top: 0.15rem;
}

.about-partner:last-child {
  padding-bottom: 0;
}

.about-partner span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(14, 124, 139, 0.2);
  background: rgba(14, 124, 139, 0.07);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-partner strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.about-partner p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-page-vision {
  padding: 5rem 0;
  background: var(--navy);
}

.about-page-vision__stage {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.about-page-vision__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  background: #163044;
}

.about-page-vision__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.about-page-vision__media:hover img {
  transform: scale(1.09);
}

.about-page-vision__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 26, 42, 0.1) 20%, rgba(12, 26, 42, 0.72) 100%);
  pointer-events: none;
}

.about-page-vision__frame {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.about-page-vision__media figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
}

.about-page-vision__media figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-page-vision__media figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.about-page-vision__copy {
  color: #fff;
}

.about-page-vision__copy .eyebrow {
  color: #8fd0d8;
}

.about-page-vision__copy h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-page-vision__text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-page-vision__text strong {
  color: #fff;
  font-weight: 700;
}

.about-page-vision__points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page-vision__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.about-page-vision__points li > span {
  color: #8fd0d8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding-top: 0.15rem;
}

.about-page-vision__points strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.about-page-vision__points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-mission {
  padding: 5rem 0;
}

.about-mission .section-heading {
  margin-bottom: 2rem;
}

.about-mission__grid {
  display: grid;
  gap: 1.25rem;
}

.about-mission__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.6rem 1.85rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-mission__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.about-mission__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
  border: 1px solid rgba(14, 124, 139, 0.2);
  background: rgba(14, 124, 139, 0.07);
}

.about-mission__icon svg {
  width: 22px;
  height: 22px;
}

.about-mission__top > span:last-child {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-mission__card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

.about-mission__card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.about-values {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, #eef5f7 0%, #f7fbfd 46%, #eef4f7 100%);
}

.about-values__glow {
  pointer-events: none;
  position: absolute;
  inset: auto -8% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(14, 124, 139, 0.16);
  filter: blur(40px);
}

.about-values__heading {
  max-width: none;
  margin-bottom: 1.25rem;
}

.about-values__acronym {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.about-values__acronym span {
  position: relative;
}

.about-values__acronym span + span::before {
  content: "";
  position: absolute;
  left: -0.72em;
  top: 50%;
  width: 0.42em;
  height: 1px;
  background: rgba(14, 124, 139, 0.28);
}

.about-values__grid {
  display: grid;
  gap: 1rem;
}

.about-value {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.7rem 1.45rem 1.8rem;
  background: var(--white);
  border: 1px solid rgba(14, 124, 139, 0.12);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 124, 139, 0.15));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.about-value:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 124, 139, 0.28);
  box-shadow: 0 18px 36px rgba(14, 48, 80, 0.1);
}

.about-value:hover::before {
  transform: scaleX(1);
}

.about-value__index {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-value__letter {
  display: block;
  margin: 0.55rem 0 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--navy);
}

.about-value h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.about-value h3 em {
  font-style: normal;
  color: var(--accent);
}

.about-value p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.about-cta,
.home-cta {
  padding: 0 0 5.5rem;
  background: var(--white);
}

.home-cta {
  padding-top: 1.5rem;
}

.home-cta .about-cta__panel {
  margin-top: 0;
}

.about-cta__panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: 5rem;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(14, 124, 139, 0.14);
  background:
    linear-gradient(135deg, rgba(14, 124, 139, 0.08), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
  box-shadow: var(--shadow);
}

.about-cta__copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-cta__actions {
  display: grid;
  gap: 0.75rem;
}

.about-cta__actions .btn {
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 3.5rem;
    align-items: center;
  }

  .about-hero__media img {
    min-height: 460px;
  }

  .about-partners__list {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .about-partner:nth-child(2) {
    border-top: 0;
    padding-top: 0.15rem;
  }

  .about-page-vision__stage {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: center;
  }

  .about-page-vision__media img {
    min-height: 520px;
  }

  .about-mission__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .about-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .about-value {
    padding: 1.85rem 1.55rem 1.9rem;
  }

  .about-cta__panel {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 2.1rem 2.2rem;
  }

  .about-cta__actions {
    grid-template-columns: 1fr 1fr;
    min-width: 28rem;
  }
}

/* Media Centre page */
.media-centre {
  background: #fff;
}

.media-feature {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(46rem, 94vh);
  overflow: hidden;
  background: #0c1a2a;
}

.media-feature__photo,
.media-feature__veil {
  position: absolute;
  inset: 0;
}

.media-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 12%;
}

.media-feature__veil {
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.55) 0%, rgba(7, 14, 24, 0.06) 48%, rgba(7, 14, 24, 0.28) 100%);
}

.media-feature__inner {
  position: relative;
  z-index: 1;
  padding: 8.4rem 0 1.5rem;
}

.media-feature__page {
  max-width: 26rem;
}

.media-feature__page .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.media-feature__page h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.media-feature__page p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.6;
}

.media-feature__dock {
  position: relative;
  z-index: 1;
  padding: 1.8rem 0 2.1rem;
  background: rgba(8, 16, 26, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.media-feature__story {
  max-width: 44rem;
}

.media-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-feature__meta span:first-child {
  padding: 0.22rem 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.media-feature__story h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
}

.media-feature__story h2 a:hover {
  color: #d7ebef;
}

.media-feature__story > p:not(.media-feature__meta) {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.media-feature__link {
  width: fit-content;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.18rem;
}

.media-feature__link:hover {
  color: #d7ebef;
  border-bottom-color: #d7ebef;
}

.media-centre__body {
  padding: 3.2rem 0 5.5rem;
  background: #fff;
}

.media-centre__more {
  margin: 0 0 1.35rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.media-centre__grid {
  display: grid;
  gap: 1.15rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 124, 139, 0.14);
  box-shadow: 0 12px 28px rgba(14, 48, 80, 0.06);
}

.press-card__photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #cfe3e7;
}

.press-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.press-card:hover .press-card__photo img {
  transform: scale(1.05);
}

.press-card__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.25rem 1.35rem;
  border-top: 3px solid var(--accent);
}

.press-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin: 0 0 0.7rem;
}

.press-card__meta span:first-child {
  padding: 0.22rem 0.5rem;
  background: rgba(14, 124, 139, 0.12);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-card__meta span:last-child {
  align-self: center;
  color: var(--mist);
  font-size: 0.78rem;
}

.press-card h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.28;
}

.press-card h2 a:hover {
  color: var(--accent);
}

.press-card p {
  margin: 0 0 1rem;
  color: var(--slate);
  line-height: 1.65;
}

.press-card__link {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.press-card__link:hover {
  color: var(--navy);
}

@media (min-width: 860px) {
  .media-feature {
    min-height: min(50rem, 94vh);
  }

  .media-feature__inner {
    padding-top: 9rem;
  }

  .media-feature__dock {
    padding: 2rem 0 2.3rem;
  }

  .media-centre__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
  }
}

/* Procurement */
.proc-page {
  background: #fff;
}

.proc-hero {
  position: relative;
  isolation: isolate;
  min-height: min(32rem, 74vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0c1a2a;
}

.proc-hero__photo,
.proc-hero__veil {
  position: absolute;
  inset: 0;
}

.proc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  transform: scale(1.06);
}

.proc-hero__veil {
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.38) 0%, rgba(7, 14, 24, 0.22) 36%, rgba(7, 14, 24, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 14, 24, 0.58) 0%, transparent 64%);
}

.proc-hero__inner {
  position: relative;
  z-index: 1;
  padding: 8.4rem 0 2.5rem;
}

.proc-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.proc-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
}

.proc-hero__lead {
  margin: 0 0 1.2rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.proc-hero__update {
  display: inline-block;
  margin: 0;
  max-width: 38rem;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.55;
}

.proc-process {
  padding: 3.4rem 0 1.2rem;
  background: #f7fafb;
}

.proc-process h2,
.proc-board h2 {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.proc-steps {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.proc-steps li {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(14, 124, 139, 0.14);
  box-shadow: var(--shadow);
}

.proc-steps span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.proc-steps h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.proc-steps p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.proc-board {
  padding: 2rem 0 5.4rem;
  background: #f7fafb;
}

.proc-notice {
  display: grid;
  gap: 0;
  margin-bottom: 1.4rem;
  background: #fff;
  border: 1px solid rgba(14, 124, 139, 0.14);
  box-shadow: var(--shadow);
}

.proc-notice__body {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.45rem 1.3rem 1.5rem;
}

.proc-notice__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
}

.proc-status {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(12, 26, 42, 0.16);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-status.is-open {
  border-color: rgba(14, 124, 139, 0.28);
  background: rgba(14, 124, 139, 0.1);
  color: var(--accent);
}

.proc-notice__category {
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-notice__meta > span:last-child {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.proc-notice__meta small {
  display: block;
  color: var(--mist);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-notice__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.proc-notice__body > p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.proc-notice__close {
  display: grid;
  gap: 0.15rem;
  margin: 0.15rem 0 0;
}

.proc-notice__close dt {
  color: var(--mist);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proc-notice__close dd {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
}

.proc-notice__nda,
.proc-notice__note {
  max-width: 38rem;
  font-size: 0.92rem;
}

.proc-notice__note {
  color: var(--mist);
}

.proc-notice .btn {
  justify-self: start;
}

.proc-empty {
  margin: 0 0 1.6rem;
  padding: 1.4rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
}

.proc-prequal {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem 1.3rem 1.55rem;
  background: var(--navy);
  color: #fff;
}

.proc-prequal__intro h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.proc-prequal__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proc-prequal__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proc-prequal__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proc-prequal__list span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.proc-prequal__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (min-width: 760px) {
  .proc-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proc-notice__body {
    padding: 1.7rem 1.7rem 1.65rem;
  }

  .proc-prequal {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    padding: 1.8rem 1.8rem 1.85rem;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .proc-hero {
    min-height: min(36rem, 76vh);
  }

  .proc-steps li {
    padding: 1.45rem 1.35rem 1.5rem;
  }
}

.proc-apply__hero {
  padding: 8.2rem 0 2.2rem;
  background: #0c1a2a;
  color: #fff;
}

.proc-apply__hero h1 {
  margin: 0 0 0.6rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.proc-apply__ref,
.proc-apply__close {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.proc-apply__body {
  padding: 2.2rem 0 5.2rem;
  background: #f7fafb;
}

.proc-apply__grid {
  display: grid;
  gap: 1.4rem;
}

.proc-apply__brief h2 {
  margin: 1.2rem 0 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.proc-apply__excerpt,
.proc-apply__copy {
  color: var(--slate);
  line-height: 1.7;
}

.proc-apply__reqs {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--slate);
}

.proc-apply__back {
  color: var(--accent);
  font-weight: 600;
}

.proc-apply__hint {
  color: var(--mist);
  font-size: 0.82rem;
}

.proc-apply__errors {
  padding: 0.8rem 0.9rem;
  background: #fde8e8;
  color: #9b2c2c;
}

.proc-apply__success h2 {
  margin-bottom: 0.5rem;
}

@media (min-width: 900px) {
  .proc-apply__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2.2rem;
    align-items: start;
  }
}
