:root {
  --navy: #0b1f33;
  --navy-2: #122a44;
  --brand: #1b365d;
  --brand-800: #162f4f;
  --accent: #2a9d6b;
  --accent-2: #3db87e;
  --gold: #e6c84a;
  --gold-ink: #2a2408;
  --ink: #14181f;
  --muted: #5c6570;
  --paper: #f6f7f9;
  --line: #e4e7eb;
  --white: #ffffff;
  --black: #0a0a0a;
  --shadow: 0 18px 40px rgba(11, 31, 51, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1280px;
  --header-h: 76px;
  --utility-h: 40px;
}

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

html {
  scroll-behavior: smooth;
  min-width: 1280px;
}

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

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

::selection {
  background: #c8ecd8;
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--white);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid rgba(20, 24, 31, 0.08);
  isolation: isolate;
}

.header-utility {
  height: var(--utility-h);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.header-utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-label {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.92);
}

.utility-links a:hover {
  color: #86efac;
}

.utility-sep {
  opacity: 0.35;
}

.utility-domain {
  color: rgba(255, 255, 255, 0.65);
}

.header-main {
  height: var(--header-h);
  background: var(--white);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 22px;
  padding: 0 8px;
}

.nav-desktop a {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

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

.nav-desktop a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-gold {
  background: var(--gold);
  color: var(--gold-ink);
}

.btn-gold:hover {
  background: #d4b53a;
}

.btn-green {
  background: linear-gradient(90deg, var(--accent), #22c55e);
  color: var(--white);
  border-radius: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  min-height: 50px;
  box-shadow: 0 16px 40px rgba(42, 157, 107, 0.28);
}

.btn-green:hover {
  transform: scale(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  min-height: 50px;
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--brand);
  transform: scale(1.05);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-dark:hover {
  background: #222;
}

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

/* Hero: TRE split + Nova cinematic media */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.hero-turbine-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.hero-turbine-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    rgba(27, 54, 93, 0.88) 0%,
    rgba(27, 54, 93, 0.72) 42%,
    rgba(22, 47, 79, 0.52) 72%,
    rgba(15, 35, 55, 0.45) 100%
  );
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 42% at 78% 88%, #1d4a32 0%, transparent 55%),
    radial-gradient(ellipse 50% 36% at 18% 92%, #102418 0%, transparent 50%),
    linear-gradient(180deg, #071018 0%, #123047 38%, #173226 68%, #0a120e 100%);
}

.hero-photo.has-image {
  background: none;
}

.hero-photo img,
.hero-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orb,
.hero-grid {
  z-index: 3;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.hero-orb-a {
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(42, 157, 107, 0.22);
  transform: translate(-50%, -50%);
}

.hero-orb-b {
  right: 0;
  bottom: 0;
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.1);
  animation-delay: 1s;
  transform: translate(50%, 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  animation: fadeIn 0.6s ease-out both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), #4ade80);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: slideUp 0.8s ease-out both;
}

.hero h1 .line-accent {
  color: #86efac;
}

.hero-lead {
  max-width: 36em;
  margin: 0 0 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: #fff;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-lead strong {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #86efac;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: grid;
  gap: 16px;
  animation: slideUp 0.8s ease-out 0.3s both;
}

.stat-card {
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.6s ease-out 0.5s both;
  font-size: 13px;
}

.hero-meta i {
  color: #86efac;
  margin-right: 6px;
}

.scroll-cue {
  display: none;
}

/* Nova black band */
.band-black {
  background: var(--black);
  color: var(--white);
  padding: 88px 0;
}

.band-black h2 {
  margin: 0 0 18px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kicker-plain {
  margin: 0 0 10px;
  font-size: 15px;
  color: #c8c8c8;
}

.prose p {
  margin: 0 0 16px;
  max-width: 62ch;
  color: inherit;
}

.band-black .prose p {
  color: #d8d8d8;
}

.media-slot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 280px;
  background:
    linear-gradient(160deg, #1a2430, #0e151c 55%, #182028);
}

.media-slot.tall {
  min-height: 360px;
}

.media-slot.round {
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-link:hover .media-slot img {
  transform: scale(1.1);
}

/* Light editorial */
.section {
  padding: 104px 0;
}

.section-muted {
  background: var(--paper);
}

.section h2 {
  margin: 0 0 16px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section .lede {
  max-width: 62ch;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 18px;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.stack > * + * {
  margin-top: 28px;
}

.who-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.who-card h3,
.stack h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: Montserrat, sans-serif;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.check-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef7f2;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

/* Nova service list + TRE cards */
.help-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.service-list {
  display: grid;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto 56px;
}

.service-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-list h3 {
  margin: 0 0 6px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.1);
  border-color: rgba(42, 157, 107, 0.25);
}

.card-body {
  padding: 24px 24px 28px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.card-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 650;
}

.card-link:hover .more {
  transform: translateX(4px);
}

.center-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 999px;
  background: var(--white);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid transparent;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: Montserrat, sans-serif;
}

.value-item p {
  margin: 0;
  color: var(--muted);
}

/* Team / community */
.band-team {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}

.band-team h2 {
  margin: 0 0 28px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
}

/* TRE partner CTA */
.partner {
  position: relative;
  overflow: hidden;
  background: #07111c;
  color: var(--white);
  text-align: center;
  padding: 112px 0;
}

.partner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.partner-orb-a {
  width: 256px;
  height: 256px;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.partner-orb-b {
  width: 320px;
  height: 320px;
  right: 40px;
  bottom: 40px;
  background: rgba(42, 157, 107, 0.1);
  animation-delay: 1s;
}

.partner-inner {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

.partner h2 {
  margin: 0 0 16px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
}

.partner p {
  margin: 0 0 36px;
  color: #e8eef4;
  font-size: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.metric {
  padding: 18px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-size: 28px;
}

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

/* Footer */
.site-footer {
  background: var(--black);
  color: #c8c8c8;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.85fr 0.9fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #222;
}

.footer-contact a {
  color: #d8d8d8;
}

.btn-footer {
  display: inline-flex;
  margin-top: 12px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.footer-legal-inline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-inline a {
  color: #c8c8c8;
}

.footer-legal-inline a:hover {
  color: var(--white);
}

.site-footer .brand img {
  filter: invert(1) brightness(1.4);
  height: 40px;
}

.site-footer p {
  max-width: 42ch;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
  font-family: Montserrat, sans-serif;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

/* Keyframes: 1:1 from TRE */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

@keyframes pulse {
  50% { opacity: 0.5; }
}

@keyframes pulseSoft {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-orb-a {
  animation-name: floatA;
}

.hero-orb-b {
  animation-name: floatB;
}

@keyframes floatA {
  0%,
  100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 10px)); }
}

@keyframes floatB {
  0%,
  100% { transform: translate(50%, 50%); }
  50% { transform: translate(50%, calc(50% - 10px)); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

}

/* Inner pages */
.page-banner {
  background: linear-gradient(135deg, var(--brand), var(--brand-800));
  color: var(--white);
  padding: 56px 0 48px;
}

.page-banner h1 {
  margin: 0 0 12px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: -0.02em;
}

.page-banner .lede {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.page-banner.page-banner-cover {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner.page-banner-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 51, 0.88), rgba(27, 54, 93, 0.78));
}

.page-banner.page-banner-cover .wrap {
  position: relative;
  z-index: 1;
}

.page-body {
  padding: 64px 0 96px;
}

.page-body .prose {
  max-width: 72ch;
}

.page-body .prose h2 {
  margin: 40px 0 12px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
}

.page-body .prose h2:first-child {
  margin-top: 0;
}

.page-body .prose h3 {
  margin: 24px 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  color: var(--ink);
}

.page-body .prose p,
.page-body .prose li {
  color: var(--muted);
}

.page-body .prose ul {
  padding-left: 1.2em;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.info-table th {
  width: 32%;
  color: var(--ink);
  font-weight: 600;
}

.doc-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.doc-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.doc-list li strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.news-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.placeholder-note {
  padding: 16px 18px;
  background: #f0f4f8;
  border-left: 3px solid var(--brand);
  color: var(--muted);
  font-size: 14px;
  margin: 24px 0;
}

/* Long-form & editorial */
.prose-wide {
  max-width: none;
}

.prose-columns {
  column-count: 2;
  column-gap: 48px;
}

.prose-columns p {
  break-inside: avoid;
}

.figure {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #e8edf2, #d5dde6);
}

.figure img {
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
  display: block;
  background: linear-gradient(160deg, #1a2430, #0e151c);
}

.figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.figure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.figure-grid .figure {
  margin: 0;
}

.pull-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  background: var(--paper);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stat-strip div {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.stat-strip strong {
  display: block;
  font-size: 26px;
  color: var(--brand);
  font-family: Montserrat, sans-serif;
}

.stat-strip span {
  font-size: 13px;
  color: var(--muted);
}

.timeline {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--line);
}

.timeline li {
  margin-bottom: 20px;
  padding-left: 8px;
  color: var(--muted);
}

.timeline strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.insight-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.insight-card,
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.insight-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.insight-card .figure,
.project-card .figure {
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.insight-card .figure img,
.project-card .figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.insight-card .card-body,
.project-card .card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card h2,
.project-card h2 {
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 19px;
  line-height: 1.3;
}

.insight-card p,
.project-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.insight-card .more,
.project-card .more {
  margin-top: auto;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 12px;
}

.section-intro .lede {
  margin-bottom: 0;
}

/* Home distinctive layout */
.hero-home {
  min-height: 100dvh;
}

.hero-home .hero-inner {
  grid-template-columns: 1fr 1fr;
}

.hero-visual-stack {
  position: relative;
  min-height: 420px;
}

.hero-frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  background: linear-gradient(135deg, #1a3a52, #0d2818);
}

.hero-frame-main {
  inset: 0 12% 8% 0;
  z-index: 2;
}

.hero-frame-accent {
  width: 42%;
  height: 38%;
  right: 0;
  top: -4%;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  left: -5%;
  bottom: 0;
  z-index: 4;
  width: 148px;
  height: 148px;
  border: 2px solid rgba(134, 239, 172, 0.6);
  border-radius: 50%;
  animation: spinSlow 18s linear infinite;
  pointer-events: none;
}

.hero-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.home-diagonal {
  position: relative;
  padding: 120px 0;
  background: var(--paper);
  overflow: hidden;
}

.home-diagonal::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--black);
  transform: skewY(-2deg);
  transform-origin: top left;
}

.home-pin-wrap {
  padding: 80px 0 100px;
  background: var(--navy);
  color: var(--white);
}

.home-pin-wrap h2 {
  color: var(--white);
}

.home-pin-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 24px 0 8px;
}

.home-pin-card {
  flex: 0 0 340px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.home-pin-card .figure {
  margin: 0 0 16px;
  border: none;
}

.home-pin-card h3 {
  margin: 0 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.home-pin-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.home-pin-card a {
  color: #86efac;
  font-weight: 600;
  font-size: 14px;
}

.home-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.home-bento .bento-main {
  grid-row: span 2;
}

.bento-panel {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.bento-panel h3 {
  margin: 0 0 12px;
  font-family: Montserrat, sans-serif;
}

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

.enquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.enquiry-form textarea {
  min-height: 140px;
  resize: vertical;
}

.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.article-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.article-meta a {
  color: var(--accent);
  font-weight: 600;
}

.detail-actions {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Rich page modules: FAQ, quotes, showcase, secondary forms */
.page-extra {
  padding: 72px 0;
}

.page-extra-muted {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.page-extra-dark {
  background: var(--navy);
  color: var(--white);
}

.page-extra-dark .lede,
.page-extra-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.page-extra-dark h2,
.page-extra-dark h3 {
  color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-block h2 {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.faq-block .lede-small {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.page-extra-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-right: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--line);
}

.page-extra-dark .faq-item .faq-answer {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.quote-card {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.quote-card footer {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.showcase-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.showcase-card .showcase-body {
  padding: 22px;
}

.showcase-card h3 {
  margin: 0 0 8px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
}

.showcase-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.showcase-card .more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin-top: 0;
  font-size: 20px;
}

.form-panel .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.split-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ——— Distinctive layout system (page-type personalities) ——— */
.site-header {
  box-shadow: 0 12px 40px rgba(11, 31, 51, 0.08);
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

body:not(.layout-home) .page-banner {
  position: relative;
  overflow: hidden;
  padding: 40px 0 72px;
  background: linear-gradient(128deg, var(--brand) 0%, #153456 55%, var(--brand-800) 100%);
}

body:not(.layout-home) .page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
}

body:not(.layout-home) .page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 18%, 100% 100%);
  pointer-events: none;
}

.page-banner-rail {
  position: absolute;
  top: 24px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(134, 239, 172, 0.35);
  opacity: 0.55;
  pointer-events: none;
}

.page-banner-rail::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.page-banner-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(134, 239, 172, 0.95);
  font-family: Montserrat, sans-serif;
}

body:not(.layout-home) .page-banner h1 {
  padding-left: 22px;
  border-left: 4px solid var(--accent);
  max-width: 18ch;
  line-height: 1.12;
}

body.layout-insight .page-banner h1,
body.layout-legal .page-banner h1 {
  max-width: 22ch;
}

body.layout-legal .page-banner h1 {
  border-left-color: var(--gold);
}

body.layout-insight .page-banner.page-banner-cover {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}

body.layout-insight .page-banner.page-banner-cover::after {
  clip-path: polygon(0 100%, 100% 8%, 100% 100%);
}

body.layout-case .page-banner {
  background: linear-gradient(128deg, #0f2844 0%, #1a4a38 70%, #0b1f33 100%);
}

body.layout-compliance .page-banner {
  background: linear-gradient(135deg, #0b1f33, var(--brand), #162f4f);
}

.page-body {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 140px);
}

.page-body > .wrap > .figure:first-child {
  box-shadow: var(--shadow);
  border: none;
}

.layout-asset-hub .page-body > .wrap > .figure:first-child {
  border-radius: 24px;
  transform: translateY(-32px);
  margin-top: -8px;
  margin-bottom: 8px;
}

.article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.06);
  font-size: 13px;
}

.layout-asset-detail .figure-grid,
.layout-case .figure-grid {
  gap: 28px;
}

.layout-asset-detail .figure-grid .figure:first-child {
  transform: translateY(12px);
}

.layout-legal .page-body .wrap.prose {
  max-width: 920px;
  padding: 40px 48px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.layout-legal .page-extra.page-extra-muted {
  background: transparent;
  border: none;
}

.layout-legal .page-extra .faq-block {
  max-width: 920px;
  margin-inline: auto;
  padding: 32px 40px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.layout-contact .contact-grid {
  gap: 56px;
}

.layout-contact .contact-card {
  box-shadow: var(--shadow);
  border: none;
  background: var(--white);
}

.layout-contact .info-table {
  box-shadow: 0 8px 28px rgba(11, 31, 51, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.layout-news .insight-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.layout-news .insight-card {
  flex-direction: column;
  min-height: 0;
}

.layout-news .insight-card .figure {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.layout-news .insight-card .figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.layout-news .insight-card .card-body {
  flex: 1;
  min-width: 0;
  padding: 22px 24px 26px;
}

.layout-news .insight-card h2 {
  font-size: 18px;
  line-height: 1.35;
  word-wrap: break-word;
}

.layout-news .news-list {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(11, 31, 51, 0.05);
}

.layout-news .news-section-head {
  margin-top: 56px;
}

.layout-asset-hub .project-grid:first-of-type {
  grid-template-columns: repeat(12, 1fr);
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(1) {
  grid-column: span 8;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(2) {
  grid-column: span 4;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(3) {
  grid-column: span 4;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(4) {
  grid-column: span 4;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(5) {
  grid-column: span 4;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(6) {
  grid-column: span 12;
  flex-direction: row;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(6) .figure {
  flex: 0 0 320px;
  aspect-ratio: auto;
}

.layout-asset-hub .project-grid:first-of-type .project-card:nth-child(6) .card-body {
  flex: 1;
}

.layout-asset-hub h2[style] {
  display: inline-block;
  margin-top: 72px !important;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--accent);
}

.layout-about .prose-columns {
  column-gap: 56px;
  column-rule: 1px solid var(--line);
}

.page-extra {
  position: relative;
  isolation: isolate;
}

.page-extra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: inherit;
  transform: skewY(-1.25deg);
  transform-origin: top left;
  z-index: -1;
  border-top: 1px solid rgba(11, 31, 51, 0.06);
}

.page-extra-dark::before {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.layout-home .section-muted {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}

.layout-home .card-grid {
  gap: 28px;
}

.layout-home .card-link {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.layout-home .card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 31, 51, 0.12);
}

.layout-home #home-faq .faq-block {
  padding: 8px 0;
}

.layout-home #home-quotes .quote-card {
  border-left: 4px solid var(--accent);
}

.help-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.help-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.insight-card .card-body h2,
.project-card .card-body h2 {
  font-size: 18px;
  line-height: 1.35;
}
