/* AsiaAI Fund — framework-free static site styles */
:root {
  --navy-950: #04111d;
  --navy-900: #071827;
  --navy-850: #0a2032;
  --navy-800: #0e2b41;
  --navy-700: #183f59;
  --cyan-500: #21d4c2;
  --cyan-400: #55e5d7;
  --gold-500: #d6b56d;
  --gold-400: #e5ca8c;
  --cream-100: #f5f1e8;
  --cream-50: #fbf9f5;
  --white: #ffffff;
  --ink: #102233;
  --muted: #607080;
  --line: rgba(16, 34, 51, 0.14);
  --shadow: 0 28px 80px rgba(7, 24, 39, 0.13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max-width: 1220px;
  --font-sans: "Avenir Next", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-serif: "Iowan Old Style", "Songti TC", "Noto Serif TC", serif;
}

html[lang="zh-Hans-CN"] {
  --font-sans: "Avenir Next", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Iowan Old Style", "Songti SC", "Noto Serif SC", serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

::selection {
  background: var(--cyan-500);
  color: var(--navy-950);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 2000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 17, 29, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark-shell {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(214, 181, 109, 0.45);
  border-radius: 14px;
  background: var(--cream-100);
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav > a {
  padding: 10px 9px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav > a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.primary-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 16px;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
}

.primary-nav .nav-cta:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.language-switcher {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  margin-left: 10px;
}

.language-switcher summary {
  display: flex;
  min-width: 84px;
  height: 40px;
  padding: 0 11px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(85, 229, 215, 0.32);
  border-radius: 12px;
  background: rgba(85, 229, 215, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::marker {
  content: "";
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  border-color: rgba(85, 229, 215, 0.7);
  background: rgba(85, 229, 215, 0.12);
  box-shadow: 0 0 0 3px rgba(85, 229, 215, 0.06);
}

.language-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.language-current {
  min-width: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.language-chevron {
  width: 9px;
  height: 6px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.language-switcher[open] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  display: grid;
  width: 194px;
  padding: 8px;
  border: 1px solid rgba(214, 181, 109, 0.28);
  border-radius: 15px;
  background: rgba(7, 24, 39, 0.98);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher[open] .language-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.language-menu a {
  display: grid;
  padding: 10px 11px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  transition: color 160ms ease, background 160ms ease;
}

.language-menu a + a {
  margin-top: 2px;
}

.language-menu a small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.language-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.language-menu a[aria-current="true"] {
  background: linear-gradient(110deg, rgba(85, 229, 215, 0.16), rgba(214, 181, 109, 0.08));
  color: var(--cyan-400);
}

.language-menu a[aria-current="true"] small {
  color: var(--gold-400);
}

html[lang="en"] .brand-copy small {
  letter-spacing: 0.02em;
}

html[lang="en"] .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 5.7vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 0.97;
}

html[lang="en"] .hero-copy h1 span {
  margin-top: 0.08em;
  margin-left: 0;
}

html[lang="en"] .page-hero h1,
html[lang="en"] .article-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #188b82;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  background: var(--cyan-500);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(33, 212, 194, 0.18);
}

.button-primary:hover {
  background: var(--cyan-400);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.button-dark {
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #10786f;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link.light {
  color: var(--cyan-400);
}

.home-hero {
  --hero-card-one-float: -5px;
  --hero-card-two-float: 5px;
  --hero-mark-float: -7px;
  position: relative;
  overflow: hidden;
  padding: 94px 0 0;
  background:
    radial-gradient(circle at 83% 25%, rgba(33, 212, 194, 0.14), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(214, 181, 109, 0.16), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 56%, #0b2d42);
  color: var(--white);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(85, 229, 215, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 229, 215, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 3%, black 45%, transparent 100%);
}

.home-hero-grid {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.hero-copy h1 {
  max-width: 670px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.1em;
  margin-left: 0.55em;
  color: var(--gold-400);
}

.hero-subtitle {
  margin: 34px 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.hero-mark-frame {
  position: absolute;
  top: 45px;
  right: 0;
  display: grid;
  width: min(43vw, 470px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(85, 229, 215, 0.28);
  border-radius: 50%;
}

.hero-mark-frame::before,
.hero-mark-frame::after {
  position: absolute;
  border: 1px solid rgba(214, 181, 109, 0.22);
  border-radius: inherit;
  content: "";
}

.hero-mark-frame::before {
  inset: 8%;
  border-top-color: rgba(85, 229, 215, 0.58);
}

.hero-mark-frame::after {
  inset: -8%;
  border-style: dashed;
}

.hero-mark-frame img {
  position: relative;
  z-index: 2;
  width: 76%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.3));
}

.hero-glow {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(33, 212, 194, 0.15);
  filter: blur(45px);
}

.hero-data-card {
  position: absolute;
  z-index: 3;
  min-width: 178px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(4, 17, 29, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-data-card small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-data-card strong {
  color: var(--cyan-400);
  font-size: 0.95rem;
}

.hero-data-card-one {
  top: 45px;
  left: -18px;
}

.hero-data-card-two {
  right: -8px;
  bottom: 82px;
}

.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof span {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-proof span:last-child {
  border-right: 0;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream-100);
}

.section-dark {
  background:
    radial-gradient(circle at 100% 0, rgba(33, 212, 194, 0.1), transparent 30%),
    var(--navy-900);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2,
.mission-grid h2,
.impact-grid h2,
.risk-grid h2,
.contact-details h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.3vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0;
  color: var(--muted);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advantage-card {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.advantage-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.advantage-card > span,
.service-index,
.sector-list article > span,
.impact-points article > span {
  color: #13897f;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.advantage-card h3 {
  margin: 54px 0 12px;
  font-size: 1.24rem;
  line-height: 1.35;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.source-note {
  margin: 28px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--gold-500);
  color: #71808d;
  font-size: 0.8rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.mission-cards {
  display: grid;
  gap: 18px;
}

.mission-cards article {
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.mission-cards article:last-child {
  margin-left: 54px;
  border-color: rgba(214, 181, 109, 0.35);
}

.mission-cards span {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mission-cards h3 {
  margin: 8px 0;
  font-size: 1.42rem;
}

.mission-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-preview-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(16, 34, 51, 0.1);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.service-preview-grid article:nth-child(2) {
  transform: translateY(24px);
  background: var(--white);
}

.service-preview-grid h3 {
  margin: 58px 0 14px;
  font-size: 1.5rem;
}

.service-preview-grid p {
  margin: 0 0 30px;
  color: var(--muted);
}

.service-preview-grid .text-link {
  margin-top: auto;
}

.cta-section {
  padding: 64px 0;
  background: var(--cream-100);
}

.cta-panel {
  display: grid;
  padding: 58px 64px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(33, 212, 194, 0.16), transparent 32%),
    var(--navy-900);
  color: var(--white);
}

.cta-panel h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 94px;
  background:
    radial-gradient(circle at 80% 50%, rgba(33, 212, 194, 0.14), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.page-hero::after {
  position: absolute;
  right: -10%;
  bottom: -260px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(214, 181, 109, 0.17);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) 0.25fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 6vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.page-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.page-hero .button {
  margin-top: 32px;
}

.page-hero-motif {
  position: relative;
  width: 280px;
  height: 280px;
}

.motif-ring {
  position: absolute;
  border: 1px solid rgba(85, 229, 215, 0.36);
  border-radius: 50%;
}

.motif-ring-one {
  inset: 18px;
}

.motif-ring-two {
  inset: 72px;
  border-color: rgba(214, 181, 109, 0.55);
}

.motif-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 20px var(--cyan-500);
}

.motif-dot-one {
  top: 26px;
  left: 128px;
}

.motif-dot-two {
  right: 36px;
  bottom: 63px;
}

.motif-dot-three {
  bottom: 52px;
  left: 50px;
  background: var(--gold-400);
  box-shadow: 0 0 20px var(--gold-500);
}

/* Each inner page keeps the brand palette but receives its own visual field. */
.page-hero-about {
  background:
    radial-gradient(ellipse at 84% 18%, rgba(33, 212, 194, 0.2), transparent 34%),
    radial-gradient(circle at 12% 110%, rgba(214, 181, 109, 0.11), transparent 34%),
    linear-gradient(132deg, #04111d 0%, #061a29 56%, #0a3140 100%);
}

.page-hero-about::before {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(85, 229, 215, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 229, 215, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 28%, black 78%, transparent 100%);
}

.page-hero-strategy {
  background:
    radial-gradient(circle at 76% 44%, rgba(33, 212, 194, 0.18), transparent 27%),
    radial-gradient(circle at 94% 6%, rgba(214, 181, 109, 0.13), transparent 24%),
    linear-gradient(150deg, #04111d 0%, #081a2a 52%, #102d3b 100%);
}

.page-hero-strategy::before {
  opacity: 0.42;
  background: repeating-linear-gradient(
    125deg,
    transparent 0,
    transparent 82px,
    rgba(85, 229, 215, 0.075) 83px,
    transparent 84px
  );
  mask-image: linear-gradient(90deg, transparent 34%, black 100%);
}

.page-hero-strategy .motif-ring-one {
  border-radius: 34%;
  transform: rotate(18deg);
}

.page-hero-strategy .motif-ring-two {
  border-radius: 30%;
  transform: rotate(48deg);
}

.page-hero-services {
  background:
    radial-gradient(ellipse at 70% -18%, rgba(214, 181, 109, 0.17), transparent 34%),
    radial-gradient(circle at 92% 76%, rgba(33, 212, 194, 0.17), transparent 30%),
    linear-gradient(118deg, #04111d 0%, #081827 50%, #0a2937 100%);
}

.page-hero-services::before {
  opacity: 0.34;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 118px 100%;
  mask-image: linear-gradient(90deg, transparent 36%, black 84%, transparent 100%);
}

.page-hero-services .motif-ring-one {
  border-radius: 28%;
  transform: rotate(45deg);
}

.page-hero-team {
  background:
    radial-gradient(circle at 85% 20%, rgba(214, 181, 109, 0.17), transparent 25%),
    radial-gradient(ellipse at 62% 112%, rgba(33, 212, 194, 0.15), transparent 38%),
    linear-gradient(138deg, #04111d 0%, #081724 54%, #112b35 100%);
}

.page-hero-team::before {
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(229, 202, 140, 0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 48%, black 92%, transparent 100%);
}

.page-hero-team .motif-ring-one {
  border-style: dashed;
}

.page-hero-portfolio {
  background:
    radial-gradient(ellipse at 82% 46%, rgba(33, 212, 194, 0.2), transparent 31%),
    linear-gradient(112deg, transparent 58%, rgba(214, 181, 109, 0.08) 74%, transparent 91%),
    linear-gradient(145deg, #04111d 0%, #071b29 52%, #0a3340 100%);
}

.page-hero-portfolio::before {
  opacity: 0.31;
  background: repeating-radial-gradient(
    ellipse at 84% 50%,
    transparent 0,
    transparent 54px,
    rgba(85, 229, 215, 0.09) 55px,
    transparent 56px,
    transparent 108px
  );
}

.page-hero-portfolio .page-hero-motif {
  transform: scaleX(1.12) rotate(-8deg);
}

.page-hero-ipo {
  background:
    radial-gradient(ellipse at 84% 82%, rgba(33, 212, 194, 0.18), transparent 36%),
    radial-gradient(circle at 72% 12%, rgba(214, 181, 109, 0.12), transparent 22%),
    linear-gradient(145deg, #04111d 0%, #071827 52%, #0a2c3d 100%);
}

.page-hero-ipo::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(85, 229, 215, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 229, 215, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 42%, black 100%);
}

.page-hero-ipo .motif-ring-one,
.page-hero-ipo .motif-ring-two {
  border-style: dashed;
}

.page-hero-contact {
  background:
    radial-gradient(circle at 84% 42%, rgba(214, 181, 109, 0.18), transparent 25%),
    radial-gradient(ellipse at 56% 110%, rgba(33, 212, 194, 0.15), transparent 38%),
    linear-gradient(128deg, #04111d 0%, #081827 55%, #12313b 100%);
}

.page-hero-contact::before {
  opacity: 0.45;
  background: radial-gradient(
    circle at 84% 48%,
    transparent 0,
    transparent 92px,
    rgba(229, 202, 140, 0.19) 93px,
    transparent 94px,
    transparent 166px,
    rgba(85, 229, 215, 0.14) 167px,
    transparent 168px
  );
}

.page-hero-contact .motif-ring-two {
  box-shadow: 0 0 55px rgba(214, 181, 109, 0.12);
}

.page-hero-legal {
  background:
    radial-gradient(ellipse at 84% 22%, rgba(96, 112, 128, 0.16), transparent 30%),
    radial-gradient(circle at 68% 100%, rgba(33, 212, 194, 0.09), transparent 32%),
    linear-gradient(145deg, #04111d 0%, #081622 58%, #142731 100%);
}

.page-hero-legal::before {
  opacity: 0.28;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 42px,
    rgba(255, 255, 255, 0.065) 43px,
    transparent 44px
  );
  mask-image: linear-gradient(90deg, transparent 36%, black 100%);
}

.page-hero-legal .page-hero-motif {
  opacity: 0.58;
  transform: scale(0.9);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 90px;
}

.editorial-grid aside h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3.6rem;
}

.prose p {
  color: #405464;
}

.large-prose p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.6;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.purpose-card {
  min-height: 370px;
  padding: 50px;
  border-radius: var(--radius-lg);
}

.purpose-card > span {
  display: inline-block;
  margin-bottom: 80px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purpose-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 3rem;
}

.purpose-card p {
  max-width: 500px;
  margin: 0;
  font-size: 1.08rem;
}

.purpose-card-dark {
  background: var(--navy-900);
  color: var(--white);
}

.purpose-card-dark > span {
  color: var(--cyan-400);
}

.purpose-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.purpose-card-gold {
  background: var(--gold-400);
  color: var(--navy-950);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.values-row > div {
  padding: 10px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.values-row > div:first-child {
  padding-left: 0;
}

.values-row > div:last-child {
  border-right: 0;
}

.values-row span,
.service-number,
.team-index {
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.values-row h3 {
  margin: 32px 0 8px;
  font-size: 1.35rem;
}

.values-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.strategy-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.strategy-duo article {
  min-height: 390px;
  padding: 44px;
  border-radius: var(--radius-md);
  background: var(--cream-100);
}

.strategy-duo article:last-child {
  background: var(--navy-900);
  color: var(--white);
}

.strategy-label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(33, 212, 194, 0.15);
  color: #0c776e;
  font-size: 0.75rem;
  font-weight: 800;
}

.strategy-label.gold {
  background: rgba(214, 181, 109, 0.14);
  color: var(--gold-400);
}

.strategy-duo h3 {
  margin: 62px 0 18px;
  font-family: var(--font-serif);
  font-size: 2.7rem;
}

.strategy-target {
  font-size: 1.05rem;
  font-weight: 800;
}

.strategy-duo p:last-child {
  color: var(--muted);
}

.strategy-duo article:last-child p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.sector-list {
  border-top: 1px solid var(--line);
}

.sector-list article {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 0.18fr 0.82fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.sector-list h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

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

.risk-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr;
  gap: 100px;
}

.risk-grid > div:last-child > p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
}

.service-detail {
  scroll-margin-top: 82px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  gap: 70px;
}

.service-number {
  font-size: 1rem;
}

.service-detail h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-intro {
  max-width: 800px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .service-intro {
  color: rgba(255, 255, 255, 0.64);
}

.feature-list {
  display: grid;
  max-width: 850px;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
}

.service-columns {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-columns article {
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-columns h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.service-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dark-cards {
  border-color: rgba(255, 255, 255, 0.13);
}

.dark-cards article {
  border-color: rgba(255, 255, 255, 0.13);
}

.dark-cards p {
  color: rgba(255, 255, 255, 0.6);
}

.team-list {
  border-top: 1px solid var(--line);
}

.team-role {
  display: grid;
  padding: 50px 0;
  grid-template-columns: 0.2fr 0.8fr;
  border-bottom: 1px solid var(--line);
}

.team-role > div:last-child {
  max-width: 880px;
}

.team-role h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.team-profile {
  color: var(--muted);
  font-size: 1.02rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3b5365;
  font-size: 0.78rem;
  font-weight: 700;
}

.expertise-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.expertise-band div:nth-child(even) {
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 2rem;
}

.expertise-band span {
  display: block;
  color: var(--cyan-400);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.expertise-band strong {
  font-size: 1.12rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 350px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.project-card:nth-child(3n + 2) {
  background: var(--cream-100);
}

.project-card:nth-child(3n) {
  background: var(--navy-900);
  color: var(--white);
}

.project-topline {
  display: flex;
  justify-content: space-between;
  color: #16837a;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card:nth-child(3n) .project-topline {
  color: var(--cyan-400);
}

.project-card h2 {
  margin: 70px 0 16px;
  font-size: 1.55rem;
  line-height: 1.35;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.project-card:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.62);
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.impact-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.impact-points article {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 0.14fr 0.35fr 0.51fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.impact-points h3,
.impact-points p {
  margin: 0;
}

.impact-points p {
  color: var(--muted);
}

.inline-cta {
  display: flex;
  margin-top: 64px;
  padding-top: 34px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.inline-cta p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.comparison-table th,
.comparison-table td {
  min-width: 170px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.comparison-table tbody th {
  background: var(--cream-100);
  color: var(--ink);
  font-size: 0.95rem;
}

.comparison-table tbody tr:hover td {
  background: rgba(33, 212, 194, 0.04);
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.official-links a {
  color: #0b756d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.article-grid article {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  color: #16837a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-grid h3 {
  margin: 64px 0 14px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.3;
}

.article-grid p {
  color: var(--muted);
}

.article-grid .text-link {
  margin-top: auto;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: start;
  gap: 74px;
}

.diagnostic-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.diagnostic-layout h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.diagnostic-layout > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.diagnostic-note {
  padding: 16px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.diagnostic-form,
.contact-form {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.form-grid.two-columns {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  margin-bottom: 22px;
  gap: 8px;
}

.field label,
fieldset legend {
  color: #263c4e;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd4da;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 13px;
}

textarea {
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #159c91;
  outline: 3px solid rgba(33, 212, 194, 0.18);
}

fieldset {
  margin: 0 0 25px;
  padding: 0;
  border: 0;
}

fieldset legend {
  margin-bottom: 11px;
}

.choice-grid {
  display: grid;
  gap: 8px;
}

.choice-grid label {
  display: flex;
  min-height: 44px;
  padding: 10px 13px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8dfe3;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
}

.choice-grid label:has(input:checked) {
  border-color: #159c91;
  background: rgba(33, 212, 194, 0.08);
}

.choice-grid input {
  width: 18px;
  min-height: auto;
  height: 18px;
  padding: 0;
  accent-color: #108c81;
}

.revenue-choices {
  grid-template-columns: repeat(2, 1fr);
}

.form-submit-row {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 20px;
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  margin: 22px 0 0;
  padding: 16px;
  border: 1px solid rgba(214, 181, 109, 0.55);
  border-radius: 10px;
  background: #fff9e9;
  color: #684f1b;
  font-size: 0.86rem;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 90px;
  background:
    radial-gradient(circle at 80% 30%, rgba(33, 212, 194, 0.12), transparent 28%),
    var(--navy-900);
  color: var(--white);
}

.article-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 990px;
}

.article-hero-guide {
  background:
    radial-gradient(ellipse at 82% 22%, rgba(33, 212, 194, 0.18), transparent 31%),
    radial-gradient(circle at 18% 110%, rgba(214, 181, 109, 0.09), transparent 30%),
    linear-gradient(138deg, #04111d, #071827 58%, #0a303c);
}

.article-hero-guide::before {
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(85, 229, 215, 0.17) 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 46%, black 100%);
}

.article-hero-roadmap {
  background:
    radial-gradient(ellipse at 78% 100%, rgba(214, 181, 109, 0.17), transparent 38%),
    radial-gradient(circle at 96% 16%, rgba(33, 212, 194, 0.12), transparent 24%),
    linear-gradient(145deg, #04111d, #081827 56%, #172c34);
}

.article-hero-roadmap::before {
  opacity: 0.35;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 116px,
    rgba(229, 202, 140, 0.1) 117px,
    transparent 118px
  );
  mask-image: linear-gradient(90deg, transparent 38%, black 100%);
}

.article-hero-case {
  background:
    radial-gradient(circle at 86% 26%, rgba(214, 181, 109, 0.16), transparent 25%),
    radial-gradient(ellipse at 70% 112%, rgba(33, 212, 194, 0.18), transparent 42%),
    linear-gradient(130deg, #04111d, #071827 54%, #10313a);
}

.article-hero-case::before {
  opacity: 0.38;
  background:
    linear-gradient(125deg, transparent 58%, rgba(85, 229, 215, 0.08) 58.2%, transparent 58.4%),
    linear-gradient(55deg, transparent 72%, rgba(229, 202, 140, 0.08) 72.2%, transparent 72.4%);
}

.article-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.article-byline {
  display: flex;
  margin-top: 36px;
  padding-top: 20px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.article-layout {
  display: grid;
  padding-top: 88px;
  padding-bottom: 110px;
  grid-template-columns: minmax(0, 0.7fr) minmax(270px, 0.3fr);
  align-items: start;
  gap: 90px;
}

.article-body {
  max-width: 780px;
}

.article-body p,
.article-body li {
  color: #405464;
}

.article-body .article-intro {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.7;
}

.article-body h2 {
  margin: 64px 0 20px;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-body h3 {
  margin: 30px 0 8px;
  font-size: 1.15rem;
}

.article-body blockquote {
  margin: 52px 0;
  padding: 32px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.38rem;
  line-height: 1.6;
}

.article-step-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.article-step-list > div {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 0.12fr 0.28fr 0.6fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.article-step-list span {
  color: #14867d;
  font-size: 0.78rem;
  font-weight: 900;
}

.article-step-list h3,
.article-step-list p {
  margin: 0;
}

.article-source-box {
  margin-top: 52px;
  padding: 24px;
  border: 1px solid rgba(33, 212, 194, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(33, 212, 194, 0.05);
}

.article-source-box p {
  margin-bottom: 0;
}

.article-source-box a {
  margin-inline: 4px;
  color: #0a766d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 24px;
}

.article-aside > div {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--cream-100);
}

.article-aside h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.3;
}

.article-aside p {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 12px;
}

.roadmap-strip {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.roadmap-strip span:nth-child(even) {
  color: var(--gold-400);
}

.article-body section + section {
  margin-top: 58px;
  padding-top: 2px;
  border-top: 1px solid var(--line);
}

.phase-label {
  display: inline-block;
  margin: 36px 0 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(33, 212, 194, 0.12);
  color: #10786f !important;
  font-size: 0.74rem;
  font-weight: 900;
}

.case-metrics {
  display: grid;
  margin: 24px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-metrics > div {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-metrics span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.case-metrics small {
  color: var(--muted);
}

.result-panel {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
}

.result-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 78px;
}

.contact-details > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-details dl {
  margin: 42px 0;
  border-top: 1px solid var(--line);
}

.contact-details dl > div {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 0.35fr 0.65fr;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  font-weight: 700;
}

.contact-details dd a:hover {
  color: #0b756d;
}

.contact-assurance {
  padding: 20px;
  border-left: 3px solid var(--gold-500);
  background: var(--cream-100);
}

.contact-assurance p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy section {
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section + section {
  margin-top: 36px;
}

.legal-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.legal-copy p {
  color: #405464;
}

.legal-copy a {
  margin-inline: 3px;
  color: #0a766d;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-updated {
  margin-top: 42px;
  font-size: 0.85rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.not-found .button {
  margin-top: 18px;
}

.site-footer {
  padding: 76px 0 26px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 90px;
}

.footer-statement {
  max-width: 460px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer h2 {
  margin: 3px 0 24px;
  color: var(--gold-400);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}

.footer-links a,
.site-footer address a,
.site-footer address span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-style: normal;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: var(--cyan-400);
}

.site-footer address {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  margin-top: 58px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 10px;
}

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

/* Progressive motion: content stays visible unless JavaScript opts it in. */
.motion-ready .motion-reveal {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal:not(.is-visible) {
  opacity: 0;
  translate: 0 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-grid-lines {
    animation: hero-grid-drift 32s linear infinite;
  }

  .motion-ready .hero-copy > * {
    opacity: 0;
    animation: hero-copy-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .motion-ready .hero-copy > :nth-child(1) {
    animation-delay: 70ms;
  }

  .motion-ready .hero-copy > :nth-child(2) {
    animation-delay: 150ms;
  }

  .motion-ready .hero-copy > :nth-child(3) {
    animation-delay: 250ms;
  }

  .motion-ready .hero-copy > :nth-child(4) {
    animation-delay: 340ms;
  }

  .motion-ready .hero-copy > :nth-child(5) {
    animation-delay: 430ms;
  }

  .motion-ready .hero-visual {
    opacity: 0;
    animation: hero-visual-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
  }

  .motion-ready .hero-mark-frame {
    animation: hero-mark-float 7.5s ease-in-out infinite;
  }

  .motion-ready .hero-mark-frame::before {
    animation: hero-ring-spin-reverse 24s linear infinite;
  }

  .motion-ready .hero-mark-frame::after {
    animation: hero-ring-spin 34s linear infinite;
  }

  .motion-ready .hero-glow {
    animation: hero-glow-breathe 5.8s ease-in-out infinite;
  }

  .motion-ready .hero-data-card-one {
    opacity: 0;
    animation:
      hero-card-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards,
      hero-card-float-one 6.6s ease-in-out 1.2s infinite;
  }

  .motion-ready .hero-data-card-two {
    opacity: 0;
    animation:
      hero-card-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 560ms forwards,
      hero-card-float-two 7.2s ease-in-out 1.35s infinite;
  }

  .motion-ready .hero-proof span {
    opacity: 0;
    animation: hero-proof-in 620ms ease-out forwards;
  }

  .motion-ready .hero-proof span:nth-child(1) {
    animation-delay: 520ms;
  }

  .motion-ready .hero-proof span:nth-child(2) {
    animation-delay: 590ms;
  }

  .motion-ready .hero-proof span:nth-child(3) {
    animation-delay: 660ms;
  }

  .motion-ready .hero-proof span:nth-child(4) {
    animation-delay: 730ms;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-grid-drift {
  to {
    background-position: 72px 72px;
  }
}

@keyframes hero-mark-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, var(--hero-mark-float), 0);
  }
}

@keyframes hero-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-ring-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes hero-glow-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-card-float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, var(--hero-card-one-float), 0);
  }
}

@keyframes hero-card-float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, var(--hero-card-two-float), 0);
  }
}

@keyframes hero-proof-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-950);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 11px 14px;
  }

  .primary-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .language-switcher {
    width: 100%;
    margin: 10px 0 2px;
  }

  .language-switcher summary {
    width: 100%;
    height: 44px;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 7px;
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    transform-origin: top center;
  }

  .language-switcher:not([open]) .language-menu {
    display: none;
  }

  .language-switcher[open] .language-menu {
    display: grid;
  }

  .language-menu a {
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .home-hero-grid {
    min-height: 560px;
    grid-template-columns: 1fr 0.8fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 8vw, 6rem);
  }

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

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

@media (max-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .home-hero {
    padding-top: 76px;
  }

  .home-hero-grid,
  .mission-grid,
  .editorial-grid,
  .risk-grid,
  .impact-grid,
  .diagnostic-layout,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 18px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-mark-frame {
    right: 10%;
    width: 360px;
  }

  .hero-data-card-one {
    left: 8%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-grid,
  .editorial-grid,
  .risk-grid,
  .impact-grid,
  .diagnostic-layout,
  .contact-layout,
  .article-layout {
    gap: 52px;
  }

  .mission-cards article:last-child {
    margin-left: 0;
  }

  .service-preview-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-preview-grid article,
  .article-grid article {
    min-height: 0;
  }

  .service-preview-grid article:nth-child(2) {
    transform: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    align-items: flex-start;
  }

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

  .page-hero-motif {
    display: none;
  }

  .strategy-duo,
  .purpose-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid,
  .team-role {
    grid-template-columns: 0.12fr 0.88fr;
    gap: 30px;
  }

  .expertise-band {
    grid-template-columns: repeat(4, 1fr);
  }

  .expertise-band div:nth-child(even) {
    display: none;
  }

  .diagnostic-layout > div:first-child,
  .article-aside {
    position: static;
  }

  .article-aside {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark-shell {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy small {
    display: none;
  }

  .home-hero {
    --hero-card-one-float: -3px;
    --hero-card-two-float: 3px;
    --hero-mark-float: -4px;
    padding-top: 60px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 17vw, 4.8rem);
  }

  .hero-copy h1 span {
    margin-left: 0.25em;
  }

  html[lang="en"] .hero-copy h1 {
    font-size: clamp(2.65rem, 12.5vw, 4.25rem);
  }

  html[lang="en"] .hero-copy h1 span {
    margin-left: 0;
  }

  html[lang="en"] .page-hero h1,
  html[lang="en"] .article-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-mark-frame {
    top: 35px;
    right: 4%;
    width: 300px;
  }

  .hero-data-card {
    min-width: 145px;
    padding: 10px 12px;
  }

  .hero-data-card-one {
    top: 30px;
    left: 0;
  }

  .hero-data-card-two {
    right: 0;
    bottom: 30px;
  }

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

  .hero-proof span:nth-child(2) {
    border-right: 0;
  }

  .hero-proof span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .mission-grid h2,
  .impact-grid h2,
  .risk-grid h2,
  .contact-details h2 {
    font-size: 2.55rem;
  }

  .advantage-grid,
  .values-row {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 240px;
  }

  .advantage-card h3 {
    margin-top: 34px;
  }

  .values-row > div {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .values-row > div:last-child {
    border-bottom: 0;
  }

  .cta-panel {
    padding: 38px 26px;
    gap: 34px;
    border-radius: var(--radius-md);
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .editorial-grid aside h2 {
    font-size: 2.7rem;
  }

  .purpose-card,
  .strategy-duo article {
    min-height: 0;
    padding: 34px 26px;
  }

  .purpose-card > span {
    margin-bottom: 48px;
  }

  .strategy-duo h3 {
    margin-top: 45px;
  }

  .sector-list article,
  .service-detail-grid,
  .team-role {
    grid-template-columns: 1fr;
  }

  .service-number,
  .team-index {
    margin-bottom: 8px;
  }

  .service-detail h2 {
    font-size: 2.8rem;
  }

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

  .expertise-band {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .project-card {
    min-height: 310px;
    padding: 30px 26px;
  }

  .impact-points article,
  .article-step-list > div {
    grid-template-columns: 0.16fr 0.84fr;
    gap: 8px;
  }

  .impact-points article p,
  .article-step-list > div p {
    grid-column: 2;
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .diagnostic-form,
  .contact-form {
    padding: 26px 20px;
  }

  .form-grid.two-columns,
  .revenue-choices {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .article-hero {
    padding: 76px 0 64px;
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-layout {
    padding-top: 62px;
    padding-bottom: 80px;
  }

  .article-body h2 {
    margin-top: 50px;
    font-size: 1.9rem;
  }

  .article-body blockquote {
    margin-inline: 0;
    padding: 24px;
    font-size: 1.17rem;
  }

  .roadmap-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-strip span:nth-child(even) {
    transform: rotate(90deg);
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .motion-reveal,
  .motion-ready .motion-reveal:not(.is-visible) {
    opacity: 1 !important;
    translate: none !important;
  }
}
