:root {
  --ink: #210635;
  --navy: #210635;
  --charcoal: #420D4B;
  --paper: #fff9fc;
  --soft: #F5D5E0;
  --line: rgba(33, 6, 53, 0.16);
  --gold: #7B337E;
  --burgundy: #420D4B;
  --teal: #6667AB;
  --steel: #7B337E;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(33, 6, 53, 0.18);
  --max: 1180px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] { display: none !important; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: color 280ms ease, padding 280ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: padding, transform;
}

.site-header::before {
  position: absolute;
  inset: 10px clamp(16px, 3vw, 44px);
  z-index: -1;
  content: "";
  background: rgba(250, 248, 242, 0.97);
  box-shadow: 0 18px 52px rgba(33, 6, 53, 0.14);
  opacity: 0;
  transform: translateY(-24px) scaleY(0.72);
  transform-origin: top;
  transition: opacity 320ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  padding-block: 10px;
}

.site-header.is-scrolled {
  animation: none;
}

.site-header.is-scrolled::before,
.site-header.nav-active::before {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.site-header.is-scrolled .nav-group {
  animation: none;
}

.site-header.is-scrolled .brand {
  animation: none;
}

.brand {
  position: absolute;
  left: 50%;
  z-index: 23;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  font-weight: 700;
  letter-spacing: 0;
  min-width: max-content;
  opacity: 0;
  animation: brandFadeDown 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand-word,
.brand-subtitle {
  display: inline-block;
}

.brand-subtitle {
  margin-left: -6px;
}

.brand:hover {
  transform: translateX(-50%) translateY(-1px);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 13px;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.brand:hover .brand-mark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(0.001deg) scale(1.04);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: min(100%, 1160px);
  gap: clamp(170px, 24vw, 360px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  opacity: 0;
  animation: navFadeDown 720ms 190ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.site-nav a {
  color: var(--navy);
  opacity: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.site-nav a::after {
  position: absolute;
  right: -2px;
  bottom: -4px;
  left: -2px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a::before {
  position: absolute;
  right: -8px;
  bottom: -9px;
  width: 5px;
  height: 5px;
  content: "";
  border: 1px solid currentColor;
  opacity: 0;
  transform: translateX(-8px) rotate(45deg) scale(0.6);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:hover::before,
.site-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: translateX(0) rotate(45deg) scale(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.nav-toggle:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms ease, opacity 220ms ease;
}

.site-header.nav-active .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-active .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-active .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-page:not(.page-scrolled) .site-header {
  min-height: 86px;
  color: var(--ink);
  padding-block: 18px;
}

.home-page:not(.page-scrolled) .site-header::before {
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  opacity: 1;
  transform: none;
  backdrop-filter: none;
}

.home-page:not(.page-scrolled) .brand {
  display: grid;
  justify-items: center;
  gap: 0;
  color: var(--burgundy);
  opacity: 1;
  animation: none;
  pointer-events: auto;
  transform: translateX(-50%) translateY(calc((1 - var(--scroll-progress)) * clamp(104px, 12vh, 142px)));
  transition: color 260ms ease;
}

.home-page:not(.page-scrolled) .brand:hover {
  transform: translateX(-50%) translateY(calc((1 - var(--scroll-progress)) * clamp(102px, 12vh, 140px)));
}

.home-page:not(.page-scrolled) .brand-mark {
  display: none;
}

.home-page .brand-mark {
  display: none;
}

.home-page:not(.page-scrolled) .brand-word {
  color: color-mix(in srgb, var(--burgundy) calc((1 - var(--scroll-progress)) * 100%), var(--ink) calc(var(--scroll-progress) * 100%));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, calc(clamp(38px, 4vw, 58px) - (var(--scroll-progress) * 34px)), clamp(38px, 4vw, 58px));
  font-weight: 500;
  line-height: 0.88;
}

.home-page:not(.page-scrolled) .brand-subtitle {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10px, calc(clamp(14px, 1.5vw, 21px) - (var(--scroll-progress) * 8px)), clamp(14px, 1.5vw, 21px));
  font-weight: 500;
  letter-spacing: calc(0.38em - (var(--scroll-progress) * 0.38em));
  line-height: 1;
  text-transform: uppercase;
}

.home-page:not(.page-scrolled) .site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4vw, 58px);
}

.home-page:not(.page-scrolled) .nav-group {
  gap: clamp(30px, 4vw, 58px);
  opacity: 1;
  animation: none;
}

.home-page:not(.page-scrolled) .site-nav a {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 1;
  text-transform: uppercase;
}

.home-page:not(.page-scrolled) .site-nav a[aria-current="page"] {
  color: var(--burgundy);
}

.home-page .site-nav a::before,
.home-page .site-nav a::after {
  display: none;
}

.home-page.page-scrolled .site-nav a {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 1;
  text-transform: uppercase;
}

.home-page.page-scrolled .site-nav a[aria-current="page"] {
  color: var(--burgundy);
}

.home-page.page-scrolled .site-header {
  color: var(--ink);
}

.home-page.page-scrolled .brand,
.home-page.page-scrolled .nav-group {
  opacity: 1;
}

.home-page.page-scrolled .site-header::before {
  inset: 0;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: none;
  opacity: 1;
  transform: translateY(0) scaleY(1);
  backdrop-filter: blur(6px);
}

.home-page.page-scrolled .site-nav a,
.home-page.page-scrolled .brand {
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.72);
}

.home-page.page-scrolled .brand {
  display: grid;
  justify-items: center;
  gap: 0;
  color: var(--burgundy);
}

.home-page.page-scrolled .brand-word {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 0.88;
}

.home-page.page-scrolled .brand-subtitle {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandFadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes headerDropIn {
  from {
    transform: translateY(-86px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes headerContentIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerBrandIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes navPopupShell {
  0% {
    opacity: 0;
    transform: translateY(-52px) scale(0.98);
  }

  58% {
    opacity: 1;
    transform: translateY(4px) scale(1.006);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navPopupContent {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  62% {
    opacity: 1;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navPopupBrand {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-22px) scale(0.92);
  }

  62% {
    opacity: 1;
    transform: translateX(-50%) translateY(4px) scale(1.035);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  min-height: 96svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero .hero-media {
  background-image: linear-gradient(90deg, rgba(33, 6, 53, 0.78), rgba(66, 13, 75, 0.26)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80");
}

.home-page .home-hero {
  color: var(--ink);
  min-height: 100vh;
  min-height: 100svh;
  background: var(--paper);
  align-items: center;
}

.home-page .home-hero::after {
  position: absolute;
  inset: 86px 0 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 48% 34%, rgba(245, 213, 224, 0.34), rgba(245, 213, 224, 0) 28%),
    radial-gradient(circle at 72% 58%, rgba(102, 103, 171, 0.18), rgba(102, 103, 171, 0) 34%),
    linear-gradient(180deg, rgba(255, 249, 252, 0.22), rgba(245, 213, 224, 0.2));
  opacity: calc(0.72 - (var(--scroll-progress) * 0.32));
  pointer-events: none;
}

.home-page .home-hero .hero-media {
  background-image:
    radial-gradient(circle at 50% 20%, rgba(245, 213, 224, 0.72), rgba(245, 213, 224, 0) 27%),
    linear-gradient(180deg, rgba(255, 249, 252, 0.96) 0%, rgba(245, 213, 224, 0.48) 34%, rgba(102, 103, 171, 0.16) 68%, rgba(33, 6, 53, 0.08) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80");
  filter: grayscale(0) saturate(1.16) contrast(1.04) brightness(0.98);
  transition: filter 120ms linear, opacity 120ms linear;
}

.home-page.page-scrolled .home-hero .hero-media {
  filter: grayscale(0) saturate(1.16) contrast(1.04) brightness(0.98);
}

.group-hero::before {
  background-image: linear-gradient(90deg, rgba(29, 9, 44, 0.84), rgba(66, 13, 75, 0.1)), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=80");
}

.investors-hero::before {
  background-image: linear-gradient(90deg, rgba(29, 9, 44, 0.84), rgba(66, 13, 75, 0.1)), url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2200&q=80");
}

.impact-hero::before {
  background-image: linear-gradient(90deg, rgba(29, 9, 44, 0.84), rgba(66, 13, 75, 0.1)), url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=2200&q=80");
}

.contact-hero::before {
  background-image: linear-gradient(90deg, rgba(29, 9, 44, 0.84), rgba(75, 13, 59, 0.1)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2200&q=80");
}

.legal-hero::before {
  background-image: linear-gradient(90deg, rgba(29, 9, 44, 0.86), rgba(75, 13, 59, 0.12)), url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=80");
}

.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 clamp(76px, 12vh, 128px);
}

.hero-content {
  max-width: 880px;
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
}

.home-page .home-hero .hero-content {
  align-self: center;
  max-width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(160px, 25vh, 230px);
  padding-bottom: clamp(42px, 8vh, 86px);
  text-align: center;
  transition: color 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-hero .eyebrow {
  color: var(--burgundy);
}

.home-page .home-hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 76px);
  letter-spacing: 0;
  text-shadow: 0 18px 38px rgba(245, 213, 224, 0.26);
  text-transform: none;
}

.home-page .home-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(33, 6, 53, 0.68);
  text-shadow: 0 10px 24px rgba(255, 249, 252, 0.36);
}

.home-page .home-hero .hero-actions {
  justify-content: center;
}

.home-page.page-scrolled .home-hero .hero-content {
  color: var(--white);
}

.home-page.page-scrolled .home-hero .eyebrow,
.home-page.page-scrolled .home-hero h1 {
  color: #fff7fb;
}

.home-page.page-scrolled .home-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 8.2vw, 116px);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #7B337E, #420D4B);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(66, 13, 75, 0.22);
}

.button-secondary {
  border-color: rgba(66, 13, 75, 0.24);
  background: rgba(245, 213, 224, 0.34);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.home-page.page-scrolled .button-secondary {
  border-color: rgba(66, 13, 75, 0.24);
  color: var(--ink);
}

.button-secondary.light {
  border-color: rgba(33, 6, 53, 0.24);
  color: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}

.section h2 {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 58px);
}

.section h3 {
  color: var(--navy);
  font-size: 26px;
}

.balanced-copy p,
.content-panel p,
.section-heading p,
.dark-panel p,
.final-cta p,
.statement-card p,
.contact-details p {
  margin: 0;
  color: #4c6071;
  font-size: 17px;
}

.balanced-copy {
  display: grid;
  gap: 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 + p,
.final-cta h2 + p {
  margin-top: 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.five .feature-card {
  padding: 22px;
}

.card-grid.five .feature-card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.feature-card,
.statement-card,
.leader-card {
  min-height: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 46px rgba(33, 6, 53, 0.06);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.feature-card p {
  margin: 0;
  color: var(--teal);
}

.feature-card small,
.card-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card.accent {
  min-height: 210px;
  background: var(--navy);
}

.feature-card.accent h3,
.feature-card.accent p {
  color: var(--white);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.image-band.reverse {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.image-panel {
  min-height: clamp(360px, 40vw, 500px);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.platform-image {
  background-image: linear-gradient(rgba(33, 6, 53, 0.08), rgba(66, 13, 75, 0.08)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80");
}

.investor-image {
  background-image: linear-gradient(rgba(33, 6, 53, 0.08), rgba(66, 13, 75, 0.08)), url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80");
}

.content-panel {
  display: grid;
  gap: 20px;
}

.leader-grid,
.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leader-card {
  display: flex;
  min-height: 480px;
  align-items: end;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  overflow: hidden;
}

.leader-card h3,
.leader-card p {
  color: var(--white);
}

.leader-card p {
  margin: 8px 0 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.78;
}

.dark-panel {
  width: min(var(--max), calc(100% - 36px));
  padding: clamp(50px, 8vw, 86px);
  background: var(--navy);
}

.dark-panel h2,
.dark-panel p {
  color: var(--white);
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 78px);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-details a {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.contact-details span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form .wide,
.contact-form .recaptcha-wrapper,
.contact-form button {
  grid-column: 1 / -1;
}

.form-success {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(40px, 8vh, 72px) 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-success-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B337E, #420D4B);
  box-shadow: 0 12px 36px rgba(66, 13, 75, 0.28);
  color: #fff;
  animation: iconPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-success h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.form-success > p {
  max-width: 400px;
  margin: 0;
  color: #4c6071;
  font-size: 16px;
  line-height: 1.65;
}

.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

@keyframes iconPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.legal-content {
  display: grid;
  gap: 34px;
  max-width: 920px;
}

.legal-block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-block h3 {
  margin: 22px 0 8px;
  color: var(--burgundy);
  font-size: 18px;
}

.legal-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-block li + li {
  margin-top: 8px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sitemap-list a {
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sitemap-list a:hover {
  border-color: var(--gold);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(130px, 0.42fr) minmax(180px, 0.56fr) minmax(150px, 0.46fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(54px, 7vw, 82px) clamp(20px, 6vw, 86px) 28px;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(33, 6, 53, 0.98), rgba(66, 13, 75, 0.98)),
    radial-gradient(circle at 82% 16%, rgba(123, 51, 126, 0.36), rgba(123, 51, 126, 0) 32%);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 500;
  line-height: 0.98;
}

.site-footer p {
  margin: 0 0 12px;
  max-width: 520px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-kicker,
.footer-column h3 {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-column {
  display: grid;
  align-content: start;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  max-width: none;
}

@media (max-width: 1120px) {
  .section {
    padding-block: clamp(56px, 7vw, 88px);
  }

  .split,
  .image-band,
  .image-band.reverse,
  .contact-layout {
    gap: clamp(28px, 5vw, 54px);
  }

  .card-grid.four,
  .card-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  .section {
    padding-block: clamp(46px, 6vh, 66px);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section h2 {
    font-size: clamp(30px, 3.6vw, 46px);
  }

  .section h3 {
    font-size: 22px;
  }

  .balanced-copy {
    gap: 14px;
  }

  .balanced-copy p,
  .content-panel p,
  .section-heading p,
  .dark-panel p,
  .final-cta p,
  .statement-card p,
  .contact-details p {
    font-size: 16px;
  }

  .feature-card,
  .statement-card,
  .leader-card {
    min-height: 190px;
    padding: 22px;
  }

  .feature-card {
    gap: 16px;
  }

  .image-panel {
    min-height: 340px;
  }

  .dark-panel {
    padding: 42px;
  }

  .contact-form {
    padding: 24px;
  }

  .home-page .home-hero .hero-content {
    padding-top: clamp(120px, 20vh, 168px);
    padding-bottom: 34px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(42px, 5vw, 64px);
  }

  .home-page .home-hero p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 14px;
    font-size: 18px;
  }

  .home-page .home-hero .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 860px) {
  .site-header {
    justify-content: space-between;
    padding: 14px 18px;
  }

  .brand {
    position: static;
    transform: none;
    animation: navFadeDown 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .brand:hover {
    transform: translateY(-1px);
  }

  .home-page:not(.page-scrolled) .brand {
    display: grid;
    justify-items: start;
    gap: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .home-page:not(.page-scrolled) .brand:hover {
    transform: translateY(-1px);
  }

  .home-page:not(.page-scrolled) .brand-word,
  .home-page.page-scrolled .brand-word {
    font-size: 24px;
    line-height: 0.9;
  }

  .home-page:not(.page-scrolled) .brand-subtitle,
  .home-page.page-scrolled .brand-subtitle {
    font-size: 10px;
    letter-spacing: 0.28em;
    line-height: 1;
  }

  .home-page:not(.page-scrolled) .site-nav {
    display: flex;
    gap: 0;
  }

  .site-header.is-scrolled .brand {
    animation: navPopupContent 720ms 120ms cubic-bezier(0.2, 1, 0.22, 1) both;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-header .site-nav,
  .home-page:not(.page-scrolled) .site-header .site-nav,
  .home-page.page-scrolled .site-header .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    bottom: auto;
    z-index: 21;
    display: flex;
    width: auto;
    max-height: calc(100svh - 98px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(33, 6, 53, 0.12);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 249, 252, 0.98), rgba(245, 213, 224, 0.96)),
      radial-gradient(circle at 70% 18%, rgba(102, 103, 171, 0.24), rgba(102, 103, 171, 0) 34%);
    box-shadow: 0 28px 70px rgba(33, 6, 53, 0.18);
    color: var(--ink);
    font-size: 17px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header .nav-group,
  .home-page:not(.page-scrolled) .nav-group {
    display: contents;
    width: auto;
    gap: 0;
    opacity: 1;
    animation: none;
  }

  .site-header .site-nav a,
  .home-page:not(.page-scrolled) .site-nav a,
  .home-page.page-scrolled .site-nav a {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid rgba(33, 6, 53, 0.1);
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: left;
  }

  .site-header .site-nav a::after,
  .site-header .site-nav a::before,
  .home-page:not(.page-scrolled) .site-nav a::after,
  .home-page:not(.page-scrolled) .site-nav a::before,
  .home-page.page-scrolled .site-nav a::after,
  .home-page.page-scrolled .site-nav a::before {
    display: none;
  }

  .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a[aria-current="page"],
  .home-page:not(.page-scrolled) .site-nav a:hover,
  .home-page:not(.page-scrolled) .site-nav a[aria-current="page"],
  .home-page.page-scrolled .site-nav a:hover,
  .home-page.page-scrolled .site-nav a[aria-current="page"] {
    background: rgba(123, 51, 126, 0.12);
    border-color: rgba(33, 6, 53, 0.1);
    color: var(--burgundy);
    transform: none;
  }

  .site-header.nav-active .site-nav,
  .home-page:not(.page-scrolled) .site-header.nav-active .site-nav,
  .home-page.page-scrolled .site-header.nav-active .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .page-hero {
    min-height: 92svh;
  }

  .hero-content,
  .page-hero > div {
    width: min(var(--max), calc(100% - 56px));
    margin-inline: 28px;
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .split,
  .image-band,
  .image-band.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding: 52px 24px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand h2 {
    font-size: clamp(26px, 5vw, 36px);
  }

  .footer-brand p {
    max-width: 100%;
  }

  .leader-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .card-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement-card h2 {
    font-size: clamp(22px, 3.4vw, 34px);
  }

  .image-panel {
    min-height: 360px;
  }

  .feature-card,
  .statement-card,
  .leader-card {
    min-height: 210px;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    text-align: center;
    justify-items: center;
  }

  /* Home hero: large vertical offset exists for the floating brand logo on desktop.
     On mobile the brand is in the header, so reduce this to reclaim space. */
  .home-page .home-hero .hero-content {
    padding-top: clamp(90px, 16vh, 130px);
    padding-bottom: clamp(38px, 7vh, 72px);
    text-align: center;
  }

  .home-page .home-hero h1 {
    font-size: clamp(38px, 5.2vw, 64px);
    max-width: 100%;
  }

  .home-page .home-hero p:not(.eyebrow) {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 100%;
    margin-top: 16px;
    margin-inline: auto;
  }

  .home-page .home-hero .hero-actions {
    justify-content: center;
  }

  /* Tighter section headings on mobile */
  .section-heading {
    margin-bottom: 30px;
  }

  /* Compact card padding on tablets */
  .feature-card,
  .statement-card {
    padding: 22px 20px;
  }

  .feature-card {
    min-height: 200px;
  }

  /* Larger footer social tap targets (44×44 recommended minimum) */
  .footer-social a {
    width: 40px;
    height: 40px;
  }

  /* Prevent iOS Safari from zooming into form inputs on focus */
  input,
  select,
  textarea {
    font-size: max(16px, 1em);
  }

  /* Content before image on mobile for natural reading flow */
  .image-band .content-panel {
    order: -1;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 84px);
  }

  .home-page:not(.page-scrolled) .brand-word,
  .home-page.page-scrolled .brand-word {
    font-size: 21px;
  }

  .site-header .site-nav,
  .home-page:not(.page-scrolled) .site-header .site-nav,
  .home-page.page-scrolled .site-header .site-nav {
    top: 72px;
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 86px);
    padding: 10px;
  }

  .site-header .nav-group,
  .home-page:not(.page-scrolled) .nav-group {
    display: contents;
  }

  .site-header .site-nav a,
  .home-page:not(.page-scrolled) .site-nav a,
  .home-page.page-scrolled .site-nav a {
    min-height: 46px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .brand-subtitle {
    max-width: 128px;
    line-height: 1.1;
  }

  /* Statement cards go single column — feature card grids stay at 2 cols */
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .card-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement-card h2 {
    font-size: clamp(22px, 6.4vw, 32px);
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding-block: 52px;
  }

  .muted {
    width: 100%;
    padding-inline: 14px;
  }

  .dark-panel {
    width: min(var(--max), calc(100% - 28px));
    padding: 34px 22px;
  }

  .contact-form {
    padding: 20px;
  }

  /* Compact footer: brand full-width, then 3 nav columns side by side */
  .site-footer {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 18px 16px;
    gap: 0 10px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 18px;
    padding-bottom: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand .footer-kicker {
    justify-self: start;
  }

  /* Hide the long body copy — keeps footer short on mobile */
  .footer-brand > p:not(.footer-kicker) {
    display: none;
  }

  .footer-brand h2 {
    font-size: clamp(20px, 5.6vw, 26px);
    margin: 0 0 12px;
    line-height: 1.05;
  }

  .footer-social {
    margin-top: 12px;
    gap: 8px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  /* 3-column compact nav columns */
  .footer-column {
    padding: 14px 0 0;
    border-bottom: none;
  }

  .footer-column:first-of-type {
    border-top: none;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .footer-column nav {
    gap: 0;
  }

  .footer-column a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 32px;
    padding-block: 2px;
    font-size: 12px;
    border-bottom: none;
  }

  .footer-column a:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    gap: 3px;
  }

  /* Hide the disclaimer line, keep only the copyright */
  .footer-bottom p:first-child {
    display: none;
  }

  .sitemap-list {
    grid-template-columns: 1fr;
  }

  /* Home hero: further reduce padding on small phones, keep centered */
  .home-page .home-hero .hero-content {
    padding-top: clamp(80px, 14vh, 105px);
    padding-bottom: clamp(32px, 5vh, 52px);
    text-align: center;
  }

  .home-page .home-hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    max-width: 100%;
    margin-inline: auto;
  }

  .home-page .home-hero p:not(.eyebrow) {
    font-size: 15px;
    max-width: 100%;
    margin-top: 14px;
    margin-inline: auto;
  }

  .home-page .home-hero .hero-actions {
    justify-content: center;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(38px, 10.4vw, 46px);
    max-width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(34px, 9.6vw, 44px);
  }

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    margin-top: 14px;
  }

  /* Section heading should use full available width on small screens */
  .section-heading {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 16px;
  }

  /* Reduce card heights so content reads naturally */
  .feature-card,
  .statement-card {
    min-height: auto;
    padding: 16px 14px;
    gap: 14px;
  }

  .feature-card h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .feature-card small,
  .card-index {
    font-size: 10px;
  }

  .leader-card {
    min-height: 300px;
  }

  /* Reduce section-level h2 on small phones for better line wrapping */
  .section h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero,
  .page-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content,
  .page-hero > div {
    align-self: center;
    padding: 82px 0 22px;
  }

  h1,
  .page-hero h1 {
    max-width: 620px;
    font-size: clamp(34px, 4.8vw, 42px);
  }

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    min-height: 40px;
    padding: 9px 16px;
  }

  .site-nav {
    gap: 18px;
  }
}

/* ================================================================
   ANIMATIONS & EFFECTS
================================================================ */

/* --- SCROLL REVEAL --- */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal="fade-up"]    { transform: translateY(44px); }
[data-reveal="fade-left"]  { transform: translateX(-44px); }
[data-reveal="fade-right"] { transform: translateX(44px); }
[data-reveal="scale-up"]   { transform: scale(0.9) translateY(24px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* --- HERO CONTENT STAGGER ON LOAD --- */
.hero-content > *,
.page-hero > div > * {
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content > *:nth-child(1), .page-hero > div > *:nth-child(1) { animation-delay: 0.10s; }
.hero-content > *:nth-child(2), .page-hero > div > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3), .page-hero > div > *:nth-child(3) { animation-delay: 0.40s; }
.hero-content > *:nth-child(4), .page-hero > div > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content .eyebrow::after { animation: eyebrowLine 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes eyebrowLine {
  from { width: 0; }
  to   { width: 30px; }
}

/* --- EYEBROW UNDERLINE REVEAL --- */
.eyebrow {
  position: relative;
  display: inline-block;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.45;
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
[data-reveal].revealed .eyebrow::after { width: 30px; }

/* --- PAGE TRANSITION OVERLAY --- */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-transition-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- FEATURE CARD HOVER --- */
.feature-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 51, 126, 0.07), rgba(102, 103, 171, 0.07));
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(33, 6, 53, 0.15);
  border-color: rgba(123, 51, 126, 0.3);
}
.feature-card:hover::after { opacity: 1; }

/* --- STATEMENT CARD HOVER --- */
.statement-card {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.statement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(33, 6, 53, 0.11);
  border-color: rgba(123, 51, 126, 0.22);
}

/* --- LEADER CARD HOVER --- */
.leader-card {
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.36s ease;
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(33, 6, 53, 0.32);
}
.leader-card > div {
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.leader-card:hover > div { transform: translateY(-4px); }

/* --- BUTTON SHIMMER + RIPPLE --- */
.button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.button-primary:hover::before { left: 160%; }

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(1); opacity: 0; }
}

/* --- IMAGE PANEL ZOOM ON HOVER --- */
.image-band .image-panel {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.image-band:hover .image-panel { transform: scale(1.045); }

/* --- DARK PANEL HOVER GLOW --- */
.dark-panel {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.45s ease;
}
.dark-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 51, 126, 0.14) 0%, transparent 58%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.dark-panel:hover::after { opacity: 1; }
.dark-panel:hover {
  box-shadow: 0 0 0 1px rgba(123, 51, 126, 0.2),
              0 32px 72px rgba(33, 6, 53, 0.22);
}

/* --- MUTED SECTION RADIAL PULSE --- */
.muted {
  position: relative;
  overflow: hidden;
}
.muted::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -30%;
  width: 180%;
  height: 220%;
  background: radial-gradient(ellipse at 50% 50%, rgba(123, 51, 126, 0.055), transparent 65%);
  animation: mutablePulse 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mutablePulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
  50%       { transform: scale(1.1) translateY(-20px); opacity: 1; }
}

/* --- FINAL CTA GLOW --- */
.final-cta {
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(123, 51, 126, 0.09), transparent 65%);
  animation: ctaGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* --- FOOTER BRAND LOGO MARK PULSE --- */
.footer-kicker {
  position: relative;
}
.footer-kicker::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--soft);
  opacity: 0.55;
  animation: dotPulse 2.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.55; }
  50%       { transform: translateY(-50%) scale(1.5); opacity: 0.9; }
}

/* --- FOOTER COLUMN LINK ARROW --- */
.footer-column nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.22s ease, gap 0.22s ease, transform 0.22s ease;
}
.footer-column nav a::before {
  content: '›';
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: var(--soft);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, max-width 0.22s ease;
}
.footer-column nav a:hover {
  transform: none;
  gap: 7px;
}
.footer-column nav a:hover::before {
  opacity: 0.75;
  max-width: 16px;
}

/* ================================================================
   GOOGLE TRANSLATE WIDGET
================================================================ */
.translate-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
}

.translate-btn,
.a11y-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(33, 6, 53, 0.18);
  border-radius: 40px;
  background: rgba(255, 249, 252, 0.96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(33, 6, 53, 0.1);
  backdrop-filter: blur(14px);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.translate-btn:hover,
.a11y-btn:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(33, 6, 53, 0.16);
  transform: translateY(-2px);
}

.translate-btn:focus-visible,
.a11y-btn:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

/* Dropdown panel — opens upward */
.translate-panel,
.a11y-panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 240px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 249, 252, 0.99);
  box-shadow: 0 16px 48px rgba(33, 6, 53, 0.15);
  backdrop-filter: blur(20px);
  animation: panelReveal 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.translate-widget.open .translate-panel { display: block; }

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.panel-heading {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Language list */
.lang-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: none;
  border-radius: 8px;
  background: none;
  color: var(--ink);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-item:hover {
  background: rgba(123, 51, 126, 0.09);
  color: var(--burgundy);
}

.lang-item:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.lang-item.active {
  background: rgba(66, 13, 75, 0.1);
  color: var(--burgundy);
  font-weight: 700;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  font-size: 12px;
  line-height: 1.25;
}

.lang-name small {
  display: block;
  font-size: 10px;
  opacity: 0.6;
  font-weight: 400;
}

/* Suppress only Google's injected top bar — NOT .skiptranslate broadly */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt { display: none !important; }
body { top: 0 !important; }

/* Google Translate API container — off-screen, NOT display:none (API needs DOM access) */
#gt-container {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ================================================================
   ACCESSIBILITY WIDGET
================================================================ */
.a11y-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
}

.a11y-widget .a11y-panel {
  display: none;
  left: auto;
  right: 0;
  width: 260px;
}

.a11y-widget.open .a11y-panel { display: block; }

.a11y-section {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.a11y-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.a11y-section-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.a11y-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.a11y-option {
  flex: 1;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.a11y-option:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.a11y-option.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}

.a11y-option:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.a11y-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border: none;
  background: none;
  color: var(--ink);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.a11y-toggle:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }

.a11y-toggle-track {
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: var(--line);
  position: relative;
  transition: background 0.22s ease;
}

.a11y-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.22s ease;
}

.a11y-toggle.active .a11y-toggle-track {
  background: var(--burgundy);
}

.a11y-toggle.active .a11y-toggle-track::after {
  transform: translateX(16px);
}

.a11y-reset {
  width: 100%;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: none;
  color: rgba(33,6,53,0.55);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.a11y-reset:hover {
  background: rgba(33,6,53,0.06);
  color: var(--ink);
}

/* ---- Accessibility mode classes applied to <html> ---- */
html.a11y-text-lg  { font-size: 110%; }
html.a11y-text-xl  { font-size: 122%; }

html.a11y-contrast * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
html.a11y-contrast img { filter: brightness(0.85); }
html.a11y-contrast .site-header,
html.a11y-contrast .site-footer { background: #111 !important; }

html.a11y-grayscale { filter: grayscale(100%); }

html.a11y-spacing *,
html.a11y-spacing p,
html.a11y-spacing li,
html.a11y-spacing a {
  letter-spacing: 0.06em !important;
  word-spacing: 0.18em !important;
  line-height: 1.9 !important;
}

html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 2px !important;
}

html.a11y-focus *:focus {
  outline: 3px solid #f0c !important;
  outline-offset: 4px !important;
}

@media (max-width: 540px) {
  .translate-widget { bottom: 18px; left: 16px; }
  .a11y-widget { bottom: 18px; right: 16px; }
  .translate-btn span,
  .a11y-btn span { display: none; }
  .translate-btn,
  .a11y-btn { padding: 11px 14px; }
  .translate-panel,
  .a11y-widget .a11y-panel { width: calc(100vw - 32px); left: 0; right: auto; }
  .a11y-widget .a11y-panel { left: auto; right: 0; }
}

/* --- RECAPTCHA --- */
.recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0 8px;
  grid-column: 1 / -1;
}

.recaptcha-error {
  display: none;
  margin: 0;
  padding: 9px 14px;
  border-left: 3px solid #c0392b;
  border-radius: 0 6px 6px 0;
  background: rgba(192, 57, 43, 0.07);
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
}

.recaptcha-error.visible { display: block; }

/* Responsive reCAPTCHA */
@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}

/* --- CURSOR GLOW (added via JS, desktop only) --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(123, 51, 126, 0.065), transparent 68%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  [data-reveal],
  [data-reveal].revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-content > *,
  .page-hero > div > * {
    animation: none !important;
  }
  .page-transition-overlay { transition: none !important; }
  .muted::before,
  .final-cta::before,
  .footer-kicker::before,
  .btn-ripple { animation: none !important; }
}

/* ================================================================
   SAFE AREA INSETS (notched / pill-button phones)
================================================================ */
@supports (padding: env(safe-area-inset-bottom)) {
  .translate-widget {
    bottom: calc(28px + env(safe-area-inset-bottom));
    left: max(28px, env(safe-area-inset-left));
  }

  .a11y-widget {
    bottom: calc(28px + env(safe-area-inset-bottom));
    right: max(28px, env(safe-area-inset-right));
  }

  .site-footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 540px) {
  @supports (padding: env(safe-area-inset-bottom)) {
    .translate-widget {
      bottom: calc(18px + env(safe-area-inset-bottom));
      left: max(16px, env(safe-area-inset-left));
    }

    .a11y-widget {
      bottom: calc(18px + env(safe-area-inset-bottom));
      right: max(16px, env(safe-area-inset-right));
    }
  }
}

/* ================================================================
   EXTRA SMALL PHONES (iPhone SE, ≤ 375px)
================================================================ */
@media (max-width: 375px) {
  .site-header {
    padding: 10px 12px;
  }

  .home-page:not(.page-scrolled) .brand-word,
  .home-page.page-scrolled .brand-word {
    font-size: 19px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(26px, 7.6vw, 32px);
  }

  .button {
    padding: 12px 16px;
    font-size: 11px;
  }

  .dark-panel {
    padding: 28px 16px;
  }

  .contact-form {
    padding: 16px;
  }

  .feature-card,
  .statement-card {
    padding: 14px 12px;
  }

  /* On very small phones, collapse feature cards to 1 column */
  .card-grid.three,
  .card-grid.four,
  .card-grid.five {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 28px 14px 14px;
  }

  .footer-column a {
    font-size: 11px;
    min-height: 28px;
  }
}
