:root {
  --navy-950: #03111f;
  --navy-900: #061827;
  --navy-800: #0b263a;
  --navy-700: #153a52;
  --ink: #102633;
  --muted: #667783;
  --green: #21d69b;
  --green-dark: #0c9069;
  --green-soft: #dff9ef;
  --blue: #3a78ff;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --stone: #e7e3da;
  --white: #ffffff;
  --line: rgba(16, 38, 51, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(4, 20, 33, 0.14);
  --radius: 2px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4, .brand, .metric, .display {
  font-family: "DM Sans", Arial, sans-serif;
}
h1, h2 { letter-spacing: -0.05em; line-height: 0.98; }
h3 { letter-spacing: -0.025em; line-height: 1.15; }
::selection { background: var(--green); color: var(--navy-950); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobile-only { display: none; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--green);
  color: var(--navy-950);
  font-weight: 700;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 max(26px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(3, 17, 31, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}
body.menu-open .site-header {
  background: rgba(3, 17, 31, 0.99);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 650; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--green);
  font-size: 14px;
  letter-spacing: -0.04em;
}
.brand-mark.official-logo {
  width: 58px;
  height: 38px;
  padding: 5px;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.6);
}
.brand-mark.official-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.52); font: 500 8px "Manrope"; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 23px; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle i { display: block; width: 25px; height: 2px; margin: 6px 0; background: var(--white); transition: .25s; }

.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(33,214,155,.82);
  background: var(--green);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.025em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(33,214,155,.08);
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: transparent; color: #21d69b; box-shadow: 0 18px 42px rgba(33,214,155,.14); }
.button-small { min-height: 38px; padding-inline: 15px; font-size: 10px; }
.button-outline { background: transparent; color: var(--green); }
.button-outline:hover { background: var(--green); color: var(--navy-950); }
.button-dark { background: var(--navy-950); color: var(--white); border-color: var(--navy-950); }
.button-dark:hover { color: var(--navy-950); background: transparent; }
.text-link { position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 12px; font-weight: 750; }
.text-link span { color: var(--green-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.shell { width: min(var(--max), calc(100% - 52px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 76px 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-stone { background: var(--stone); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.section-dark .section-rule, .section-navy .section-rule { border-color: var(--line-dark); }

.eyebrow {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .section-navy .eyebrow, .page-hero .eyebrow { color: var(--green); }
.section-title { max-width: 920px; margin-bottom: 58px; }
.section-title h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 74px); font-weight: 520; }
.section-title h2 em { color: var(--green-dark); font-style: normal; font-weight: 420; }
.section-dark .section-title h2 em, .section-navy .section-title h2 em { color: var(--green); }
.section-title p:last-child { max-width: 720px; color: var(--muted); font-size: 18px; }
.section-dark .section-title p:last-child, .section-navy .section-title p:last-child { color: rgba(255,255,255,.62); }
.lead { font-size: 22px; line-height: 1.45; color: var(--ink); }
.muted { color: var(--muted); }
.kicker-line { display: flex; align-items: center; gap: 14px; }
.kicker-line::before { content: ""; width: 38px; height: 1px; background: var(--green); }

.page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(70,90,120,.18), transparent 30%),
    radial-gradient(circle at 67% 60%, rgba(33,214,155,.08), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #0b1b2c 72%, #142a3e);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 520px;
  height: 520px;
  right: -150px;
  bottom: -260px;
  border: 1px solid rgba(33,214,155,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(33,214,155,.025), 0 0 0 160px rgba(33,214,155,.02);
}
.page-hero > .shell { position: relative; z-index: 2; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 78px; align-items: end; min-width: 0; }
.hero-copy, .hero-side { min-width: 0; }
.hero-copy h1 { margin-bottom: 28px; max-width: 920px; font-size: clamp(52px, 6.1vw, 94px); font-weight: 520; }
.hero-copy h1 em { color: #21d69b; font-style: normal; font-weight: 400; }
.hero-copy > p:last-of-type { max-width: 760px; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions { position: relative; z-index: 4; display: flex; gap: 26px; align-items: center; margin-top: 34px; flex-wrap: wrap; }
.hero-side { display: grid; align-content: end; }
.hero-side-note { border-top: 1px solid rgba(255,255,255,.35); padding-top: 18px; display: grid; grid-template-columns: 58px 1fr; gap: 15px; }
.hero-side-note span { color: var(--green); font: 700 11px "DM Sans"; }
.hero-side-note p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }

.home-hero { min-height: 820px; align-items: center; padding-bottom: 64px; }
.home-hero::before {
  opacity: 0;
  background-image: none;
  mask-image: none;
}
.home-hero .hero-grid { align-items: center; }
.home-hero .hero-copy h1 { font-size: clamp(50px, 5.25vw, 80px); }
.hero-signal { margin: 0 0 22px; color: rgba(33,214,155,.86); font: 750 14px "DM Sans"; letter-spacing: .105em; text-transform: uppercase; }
.hero-microcopy { font-size: 15px !important; max-width: 650px !important; }
.home-video-frame {
  width: min(100%, 584px);
  min-height: 0;
  aspect-ratio: 584 / 347;
  margin-left: auto;
  border-color: rgba(33,214,155,.5);
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
  background: #02080d;
}
.home-video-frame::before,
.home-video-frame::after { display: none; }
.hero-video-player { width: 100%; height: 100%; object-fit: cover !important; background: #02080d; }
.hero-value-strip { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.18); background: rgba(3,17,31,.7); backdrop-filter: blur(14px); }
.hero-values { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-values article { padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-values article:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.hero-values strong { display: block; color: var(--white); font: 700 20px "DM Sans"; }
.hero-values span { color: rgba(255,255,255,.56); font-size: 12px; }

.media-placeholder {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33,214,155,.08), rgba(33,214,155,.06)),
    var(--navy-800);
  border: 1px solid rgba(255,255,255,.22);
  isolation: isolate;
}
.media-placeholder.light { background: linear-gradient(135deg, #eff3ef, #dfe6e4); border-color: var(--line); }
.media-placeholder::before, .media-placeholder::after { content: ""; position: absolute; z-index: -1; }
.media-placeholder::before { inset: 18px; border: 1px solid rgba(33,214,155,.32); }
.media-placeholder::after { width: 220px; height: 220px; right: -85px; top: -85px; border: 1px solid rgba(33,214,155,.25); border-radius: 50%; }
.media-placeholder .media-label { position: absolute; left: 25px; bottom: 22px; width: calc(100% - 50px); max-width: calc(100% - 50px); min-width: 0; }
.media-placeholder .media-label small { display: block; color: var(--green); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }
.media-placeholder .media-label strong { display: block; margin-top: 5px; color: var(--white); font: 600 15px "DM Sans"; overflow-wrap: anywhere; }
.media-placeholder.light .media-label strong { color: var(--ink); }
.media-placeholder .media-cross { position: absolute; inset: 0; opacity: .2; background: linear-gradient(to top right, transparent calc(50% - .5px), rgba(33,214,155,.7), transparent calc(50% + .5px)), linear-gradient(to bottom right, transparent calc(50% - .5px), rgba(33,214,155,.7), transparent calc(50% + .5px)); }
.media-placeholder > img, .media-placeholder > video { width: 100%; height: 100%; object-fit: cover; }
.ratio-hero { min-height: 460px; }
.ratio-landscape { aspect-ratio: 16 / 10; }
.ratio-video { aspect-ratio: 16 / 9; }
.ratio-wide { aspect-ratio: 21 / 9; }
.ratio-square { aspect-ratio: 1 / 1; }
.ratio-portrait { aspect-ratio: 4 / 5; }
.media-placeholder.has-media { overflow: hidden; background: var(--navy-900); }
.media-cover { width: 100%; height: 100%; object-fit: cover; }
.contain-media { object-fit: contain; padding: 10px; }
.media-placeholder.has-media img,
.media-placeholder.has-media video { transition: transform .65s ease; }
.media-placeholder.has-media:hover > img { transform: scale(1.025); }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-bar article { min-height: 160px; padding: 31px 32px; border-right: 1px solid var(--line); display: grid; align-content: center; }
.trust-bar article:first-child { border-left: 1px solid var(--line); }
.trust-bar small { color: var(--green-dark); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.trust-bar strong { margin-top: 8px; font: 620 18px "DM Sans"; line-height: 1.2; }
.trust-bar p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.value-promises small { color: var(--green-dark); font-size: 13px; letter-spacing: .1em; }
.value-promises strong { margin-top: 11px; font-size: 21px; }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 84px; align-items: start; }
.split-balanced { grid-template-columns: 1fr 1fr; }
.split > *, .market-panel-grid > *, .project-list > *, .card-grid > *, .team-grid > *, .insight-grid > * { min-width: 0; }
.split-copy { max-width: 600px; }
.split-copy h2 { font-size: clamp(42px, 4.6vw, 70px); font-weight: 520; }
.split-copy h2 em { color: var(--green-dark); font-style: normal; font-weight: 400; }
.split-copy p { color: var(--muted); }
.section-dark .split-copy p, .section-navy .split-copy p { color: rgba(255,255,255,.62); }

.number-list { border-top: 1px solid var(--line); }
.number-list article { display: grid; grid-template-columns: 58px 1fr auto; gap: 24px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); }
.number-list .num { color: var(--green-dark); font: 700 10px "DM Sans"; }
.number-list h3 { margin: 0 0 6px; font-size: 21px; }
.number-list p { margin: 0; max-width: 640px; color: var(--muted); font-size: 13px; }
.number-list .arrow { color: var(--green-dark); font-size: 19px; }
.execution-copy h2 { font-size: clamp(40px, 4.1vw, 62px); }
.problem-answer {
  display: inline-flex;
  margin-top: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(12,144,105,.32);
  background: rgba(33,214,155,.08);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.benefit-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 58px; }
.benefit-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border: 1px solid rgba(12,144,105,.24);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(4,20,33,.08);
  font-size: 12.5px;
  font-weight: 750;
}
.benefit-cloud span::before { content: "\2713"; color: var(--green-dark); font-weight: 900; }
.section-dark .number-list, .section-dark .number-list article, .section-navy .number-list, .section-navy .number-list article { border-color: var(--line-dark); }
.section-dark .number-list p, .section-navy .number-list p { color: rgba(255,255,255,.56); }
.section-dark .number-list .num, .section-navy .number-list .num { color: var(--green); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.4); }
.card.dark { background: var(--navy-800); border-color: var(--line-dark); color: var(--white); }
.card-index { color: var(--green-dark); font: 750 10px "DM Sans"; }
.card.dark .card-index { color: var(--green); }
.card h3 { margin: 42px 0 10px; font-size: 22px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.card.dark p { color: rgba(255,255,255,.55); }
.card footer { margin-top: auto; padding-top: 30px; color: var(--green-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.card.dark footer { color: var(--green); }
.solution-title { margin-inline: auto; text-align: center; }
.solution-title > p:last-child { margin-inline: auto; }
.solution-title .eyebrow { font-size: 12px; }
.solution-title h2 { font-size: clamp(40px, 4.4vw, 64px); }
.solution-cards footer { font-size: 12px; letter-spacing: .06em; }
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.opportunity-card,
.opportunity-cta {
  grid-column: span 2;
}
.opportunity-feature-card,
.opportunity-video-card {
  position: relative;
  min-height: clamp(382px, 30vw, 442px);
  overflow: hidden;
  border: 1px solid rgba(33,214,155,.28);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.07);
}
.opportunity-feature-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 12% 14%, rgba(33,214,155,.12), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(135,172,184,.12), transparent 34%),
    linear-gradient(145deg, rgba(7,24,40,.98), rgba(3,17,31,.99));
}
.opportunity-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,.95), transparent 76%);
  pointer-events: none;
}
.opportunity-feature-card small,
.opportunity-video-card small {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33,214,155,.3);
  border-radius: 999px;
  background: rgba(3,17,31,.44);
  color: rgba(225,255,246,.9);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.opportunity-feature-card h3 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 28px 0 18px;
  color: #ffffff;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}
.opportunity-feature-card p {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0;
  color: rgba(220,232,238,.72);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.6;
  font-weight: 560;
}
.opportunity-video-card {
  grid-column: span 3;
  align-self: stretch;
  display: grid;
  align-items: end;
  aspect-ratio: auto;
  color: #ffffff;
  text-decoration: none;
  background: #061521;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.opportunity-video-card video,
.opportunity-video-card .video-card-shade,
.opportunity-video-card .video-card-button {
  grid-area: 1 / 1;
}
.opportunity-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: transform .7s ease, filter .35s ease;
}
.opportunity-video-card .video-card-shade {
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(3,17,31,.08), rgba(3,17,31,.32) 46%, rgba(3,17,31,.86)),
    linear-gradient(120deg, rgba(33,214,155,.16), transparent 46%);
  pointer-events: none;
}
.opportunity-video-card .video-card-button {
  position: relative;
  z-index: 1;
  min-height: 58px;
  margin: 18px;
  padding: 0 18px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(33,214,155,.64);
  border-radius: 12px;
  background: rgba(3,17,31,.82);
  color: #21d69b;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  transition: background .24s ease, color .24s ease, transform .24s ease, border-color .24s ease;
}
.opportunity-video-card .video-card-button span {
  font-size: 18px;
  line-height: 1;
}
.opportunity-video-card:hover,
.opportunity-video-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(33,214,155,.52);
  box-shadow: 0 30px 86px rgba(0,0,0,.32), 0 0 0 1px rgba(33,214,155,.08), inset 0 1px 0 rgba(255,255,255,.08);
}
.opportunity-video-card:hover video,
.opportunity-video-card:focus-visible video {
  transform: none;
  filter: saturate(1.08) contrast(1.03);
}
.opportunity-video-card:hover .video-card-button,
.opportunity-video-card:focus-visible .video-card-button {
  transform: translateY(-2px);
  border-color: rgba(33,214,155,.82);
  background: rgba(7,24,40,.92);
  color: #dff9ef;
}
.opportunity-card,
.opportunity-cta { position: relative; min-height: 380px; overflow: hidden; border: 1px solid rgba(33,214,155,.38); border-radius: 20px; }
.opportunity-card { display: grid; grid-template-rows: 210px 1fr; min-height: 380px; background: var(--navy-800); }
.opportunity-media { min-height: 0; overflow: hidden; }
.opportunity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.opportunity-card:hover img { transform: scale(1.045); }
.opportunity-copy { position: relative; z-index: 1; padding: 23px 24px 25px; border-top: 1px solid rgba(33,214,155,.22); }
.opportunity-card small { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.opportunity-card h3 { margin: 9px 0 8px; color: var(--white); font-size: 23px; }
.opportunity-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; }
.opportunity-cta { display: flex; flex-direction: column; justify-content: center; padding: 32px; background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.opportunity-cta small { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.opportunity-cta strong { margin: 15px 0 28px; color: var(--white); font: 550 26px/1.18 "DM Sans"; }
.opportunity-cta .button { align-self: flex-start; }

.capability-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability { min-height: 330px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.capability small { color: var(--green-dark); font-weight: 800; letter-spacing: .14em; }
.capability h3 { margin: 35px 0 12px; font-size: 26px; }
.capability p { color: var(--muted); }
.deliverable { margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; font-size: 11px; }
.deliverable strong { display: block; color: var(--green-dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }

.process { position: relative; display: grid; gap: 0; max-width: 1030px; margin: auto; }
.process::before { content: ""; position: absolute; left: 39px; top: 42px; bottom: 42px; width: 1px; background: linear-gradient(var(--green), rgba(33,214,155,.08)); }
.process-step { position: relative; display: grid; grid-template-columns: 80px 1fr 250px; align-items: center; gap: 25px; min-height: 190px; padding: 26px 0; border-bottom: 1px solid var(--line-dark); }
.process-step:last-child { border-bottom: 0; }
.process-number { position: relative; z-index: 2; width: 80px; height: 80px; display: grid; place-items: center; background: var(--navy-950); border: 1px solid var(--green); color: var(--green); border-radius: 50%; font: 700 12px "DM Sans"; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; }
.process-step p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.process-benefit { padding: 19px; border-left: 1px solid var(--green); background: rgba(33,214,155,.05); }
.process-benefit small { display: block; color: var(--green); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.process-benefit strong { display: block; margin-top: 5px; font-size: 13px; }
.gate-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border: 1px solid var(--line-dark); }
.gate-strip span { padding: 18px; border-right: 1px solid var(--line-dark); text-align: center; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 700; }
.process-hero-video { margin-bottom: 18px; border-radius: 20px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.workstream-card {
  min-height: 250px;
  padding: 30px 24px 28px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,241,233,.78)),
    var(--white);
  box-shadow: 0 18px 50px rgba(4,20,33,.06);
}
.workstream-card > img {
  display: block;
  width: calc(100% + 48px);
  height: 196px;
  margin: 0 -24px 24px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #f6faf8;
  border-bottom: 1px solid var(--line);
  transform-origin: center;
}
.workstream-grid .workstream-card:nth-child(1) > img { transform: scale(1.18); }
.workstream-grid .workstream-card:nth-child(2) > img { transform: scale(1.11); }
.workstream-grid .workstream-card:nth-child(3) > img { transform: scale(1.16); }
.workstream-grid .workstream-card:nth-child(4) > img { transform: scale(1.13); }
.workstream-card .card-index { display: inline-flex; margin-bottom: 38px; }
.workstream-card h3 { margin-top: 0; font-size: 24px; }
.workstream-card p { font-size: 13px; }
.process-hero .hero-copy h1 { font-size: clamp(44px, 5vw, 78px); }
.gate-strip span { font-size: 12px; color: rgba(255,255,255,.76); }
.gate-strip span:last-child { border-right: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy-950); color: var(--white); }
.stats-grid article { min-height: 165px; padding: 26px; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: center; }
.stats-grid article:last-child { border-right: 0; }
.metric { color: var(--green); font-size: 38px; line-height: 1; }
.stats-grid span { margin-top: 10px; color: rgba(255,255,255,.58); font-size: 11px; }
.data-note { margin: 15px 0 0; color: var(--muted); font-size: 9px; }

.market-layout { display: grid; grid-template-columns: 330px 1fr; gap: 46px; align-items: start; }
.market-tabs { position: sticky; top: 92px; border-top: 1px solid var(--line); }
.market-tab { width: 100%; padding: 19px 0; display: flex; justify-content: space-between; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; color: var(--muted); cursor: pointer; }
.market-tab strong { font-size: 13px; }
.market-tab span { color: var(--green-dark); font: 700 10px "DM Sans"; }
.market-tab.active { color: var(--ink); }
.market-panel { display: none; }
.market-panel.active { display: block; animation: fade .35s ease; }
.market-panel-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.market-copy { padding: 38px; background: var(--white); border: 1px solid var(--line); }
.market-copy h3 { font-size: 35px; }
.market-copy p { color: var(--muted); }
.proof-anchor { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); }
.proof-anchor small { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.proof-anchor strong { display: block; margin-top: 6px; font-size: 14px; }

.project-toolbar { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-bottom: 38px; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-button { padding: 9px 13px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; font-weight: 750; cursor: pointer; }
.filter-button.active, .filter-button:hover { color: var(--navy-950); border-color: var(--green); background: var(--green); }
.project-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.4); }
.project-card.hidden { display: none; }
.project-card .media-placeholder { height: 330px; min-height: 330px; border: 0; }
.project-card .media-placeholder::before,
.project-card .media-placeholder::after { display: none; }
.project-media-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
.project-media-pair figure { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; }
.project-media-pair figure + figure { border-left: 1px solid rgba(255,255,255,.3); }
.project-media-pair figure img { width: 100%; height: 100%; object-fit: cover; }
.project-media-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(3,17,31,.78);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.project-hero-montage { display: grid; grid-template-columns: 1.35fr .8fr; grid-template-rows: 1fr 1fr; gap: 6px; min-height: 430px; padding: 6px; }
.project-hero-montage img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-montage img:first-child { grid-row: 1 / -1; }
.project-hero-montage.two-images { grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr; }
.project-hero-montage.two-images img:first-child { grid-row: auto; }
.projects-hero .hero-copy h1 { font-size: clamp(48px, 5.2vw, 78px); }
.project-card-content { padding: 25px; }
.project-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--green-dark); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.project-card h3 { margin: 14px 0 10px; font-size: 30px; }
.project-card p { color: var(--muted); font-size: 14px; }
.project-fact { display: flex; justify-content: space-between; gap: 18px; margin-top: 24px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 12px; }
.project-fact strong { color: var(--ink); }
.project-fact span { color: var(--muted); text-align: right; }
.project-portfolio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portfolio-feature-stack { display: grid; gap: 34px; }
.portfolio-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}
.portfolio-feature-copy h2 { margin: 0 0 24px; color: var(--white); font-size: clamp(38px, 4.4vw, 62px); font-weight: 520; line-height: .98; letter-spacing: -.045em; }
.portfolio-feature-copy h2 em { color: var(--green); font-style: normal; font-weight: 420; }
.portfolio-feature-copy .lead { color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.58; }
.portfolio-feature-media {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 10px;
  min-height: 460px;
}
.portfolio-feature-media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-950);
}
.portfolio-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.portfolio-feature-media figure:hover img { transform: scale(1.035); }
.portfolio-feature-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(3,17,31,.76);
  color: var(--white);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.portfolio-feature-media-stacked {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  min-height: 540px;
}
.portfolio-feature-media-stacked figure:first-child img { object-position: center; }
.portfolio-feature-media-stacked figure:last-child img { object-position: center; }
.home-project-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.home-project-list .project-card { grid-column: span 2; }
.home-project-list .project-card:nth-last-child(2) { grid-column: 2 / span 2; }

.team-section-title { margin-bottom: 58px; }
.team-group + .team-group { margin-top: 72px; }
.team-group-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.team-group-head h2 { margin: 0; font-size: 36px; }
.team-group-head p { margin: 0; max-width: 560px; color: var(--ink); font-size: 15px; line-height: 1.45; font-weight: 650; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person { background: var(--white); border: 1px solid var(--line); }
.person .media-placeholder { min-height: 290px; border: 0; }
.portrait-media { object-position: center top; }
.team-hero .hero-copy h1 { font-size: clamp(48px, 5.3vw, 78px); }
.person-copy { padding: 20px; }
.person-copy small { color: var(--green-dark); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.person-copy h3 { margin: 10px 0 5px; font-size: 19px; }
.person-copy p { margin: 0; color: var(--muted); font-size: 11px; }

.services-page { background: var(--paper); }
.services-sequence { border-top: 1px solid var(--line); }
.service-block {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  font: 650 15px "DM Sans";
}
.service-content { max-width: 980px; }
.service-content h2 { margin: 0 0 18px; font-size: clamp(34px, 4.2vw, 58px); font-weight: 520; }
.service-content .lead { max-width: 820px; margin-bottom: 26px; color: var(--ink); font-size: 20px; line-height: 1.55; }
.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-content li {
  position: relative;
  min-height: 58px;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.service-content li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.about-page-hero .hero-side .media-placeholder { min-height: 360px; }

.services-hero { min-height: 520px; }
.services-hero .hero-copy { max-width: 930px; }
.services-hero .hero-copy h1 { font-size: clamp(54px, 6.2vw, 92px); }
.services-hero .hero-copy p:last-child { max-width: 860px; }
.darin-services { border-top: 1px solid var(--line); }
.darin-service-group {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.8fr);
  gap: 56px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}
.darin-service-title {
  position: sticky;
  top: 96px;
  align-self: start;
}
.darin-service-title span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  font: 700 11px "DM Sans";
}
.darin-service-title h2 {
  margin: 0;
  max-width: 340px;
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 520;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.darin-service-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.darin-service-items div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}
.darin-service-items span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(33,214,155,.42);
  border-radius: 50%;
}
.darin-service-items p {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.38;
  font-weight: 650;
  letter-spacing: -.015em;
}
.about-page-hero { min-height: 690px; padding: 140px 0 92px; }
.about-page-hero .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.05fr); gap: 66px; align-items: center; }
.about-page-hero .hero-copy { max-width: 620px; }
.about-page-hero .hero-copy h1 { max-width: 620px; font-size: clamp(36px, 3.8vw, 56px); line-height: 1.03; }
.about-page-hero .hero-copy > p:last-child { max-width: 600px; font-size: 18px; }
.about-page-hero .about-film-heading { width: min(100%, 560px); margin-left: auto; }
.about-page-hero .hero-side .home-video-frame { width: min(100%, 560px); max-width: none; aspect-ratio: 16 / 9; min-height: 0; margin-left: auto; border-radius: 18px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight { background: var(--white); border: 1px solid var(--line); }
.insight .media-placeholder { min-height: 220px; border: 0; }
.insight-copy { padding: 24px; }
.insight-copy small { color: var(--green-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.insight-copy h3 { margin: 12px 0 25px; font-size: 22px; }
.article-status { display: block; color: var(--muted); font-size: 10px; font-weight: 700; }
.featured-case-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.featured-case-copy h2 { margin-bottom: 25px; font-size: clamp(44px, 5vw, 72px); font-weight: 520; }
.featured-case-copy h2 em { color: var(--green); font-style: normal; font-weight: 420; }
.featured-case-copy .lead { color: rgba(255,255,255,.72); font-size: 18px; }
.featured-points { display: grid; gap: 0; margin: 30px 0; border-top: 1px solid var(--line-dark); }
.featured-points span { padding: 13px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 650; }
.featured-points span::before { content: "+"; margin-right: 10px; color: var(--green); }
.featured-case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-height: 470px; }
.featured-case-media figure { position: relative; margin: 0; overflow: hidden; }
.featured-case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured-case-media figure:hover img { transform: scale(1.035); }
.featured-case-media figcaption { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; background: rgba(3,17,31,.8); color: var(--white); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.europe-map { position: relative; overflow: hidden; min-height: 680px; background: var(--navy-950); border: 1px solid var(--line-dark); }
.europe-map > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; opacity: .9; }
.map-markets { position: absolute; inset: auto 34px 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.map-markets > span { min-height: 90px; padding: 18px 19px; background: rgba(3,17,31,.76); border: 1px solid rgba(33,214,155,.42); color: var(--white); font-size: 14px; font-weight: 750; backdrop-filter: blur(12px); }
.map-markets small { display: block; margin-top: 7px; color: rgba(255,255,255,.66); font-size: 10px; line-height: 1.4; font-weight: 500; }
.market-summary { margin-top: 18px; }
.market-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.market-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(4,20,33,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.42); }
.market-card img { width: 100%; height: 250px; object-fit: cover; }
.market-card div { min-height: 145px; padding: 24px; background: var(--navy-900); color: var(--white); border-top: 1px solid var(--green-dark); }
.market-card h3 { margin: 0 0 10px; font-size: 25px; color: var(--white); }
.market-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.market-review-button { min-height: 58px; padding-inline: 28px; }
.who-video-frame::before,
.who-video-frame::after { display: none; }

.text-only-hero { min-height: 610px; }
.text-only-hero .hero-grid { grid-template-columns: minmax(0, 980px); }
.text-only-hero .hero-copy { max-width: 980px; }
.text-only-hero .hero-copy h1 { font-size: clamp(50px, 5.6vw, 82px); }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: start; }
.contact-routes { border-top: 1px solid var(--line); }
.route-button { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; cursor: pointer; }
.route-button span { color: var(--green-dark); font: 700 10px "DM Sans"; }
.route-button strong { display: block; font-size: 15px; }
.route-button small { display: block; margin-top: 5px; color: var(--muted); }
.route-button.active strong { color: var(--green-dark); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 25px; padding: 35px; background: var(--white); border: 1px solid var(--line); }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-dark); }
.form-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; }
.consent { grid-template-columns: auto 1fr !important; align-items: center; text-transform: none !important; letter-spacing: 0 !important; }
.consent input { width: 17px; height: 17px; accent-color: var(--green-dark); }
.form-status { margin: 0; color: var(--green-dark); font-size: 11px; align-self: center; }
.simple-contact-layout { grid-template-columns: .88fr 1.12fr; }
.simple-contact-form { border-radius: 22px; box-shadow: 0 24px 70px rgba(4,20,33,.08); }

.privacy-content { max-width: 900px; display: grid; gap: 26px; }
.privacy-content article { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.privacy-content h2 { margin: 0 0 12px; font-size: 32px; }
.privacy-content p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.privacy-content a { color: var(--green-dark); font-weight: 750; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(33,214,155,.55);
  border-radius: 999px 0 0 999px;
  background: linear-gradient(135deg, #21d69b, #11b783);
  color: var(--navy-950);
  box-shadow: 0 18px 48px rgba(4,20,33,.24);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.whatsapp-float img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  flex: 0 0 auto;
}
.whatsapp-float:hover { transform: translateX(-4px); color: var(--navy-950); }
.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 119;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(4,20,33,.18);
  backdrop-filter: blur(12px);
}
.cookie-banner p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie-banner div { display: flex; gap: 10px; }
.cookie-banner button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 750 11px "DM Sans";
  cursor: pointer;
}
.cookie-banner button[data-cookie-choice="accept"] { border-color: var(--green); background: var(--green); color: var(--navy-950); }

.site-footer { padding: 70px 0 30px; background: var(--navy-950); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 65px; padding-bottom: 48px; }
.footer-intro p { max-width: 500px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-title { color: var(--green); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.footer-links { display: grid; gap: 9px; margin-top: 18px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 11px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.35); font-size: 9px; }
.footer-bottom p { margin: 0; max-width: 930px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.page-hero .reveal { opacity: 1; transform: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Homepage concept preview - isolated from the approved production homepage. */
.home-hero-preview {
  min-height: 790px;
  align-items: center;
  padding: 150px 0 108px;
  background: var(--navy-950);
}
.home-hero-preview::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(7,17,29,.88) 0%, rgba(7,17,29,.74) 48%, rgba(7,17,29,.50) 100%),
    linear-gradient(0deg, rgba(7,17,29,.52), rgba(7,17,29,.14));
  mask-image: none;
  backdrop-filter: saturate(.9);
}
.home-hero-preview::after { display: none; }
.home-hero-visual { position: absolute; inset: 0; z-index: 0; }
.home-hero-visual video,
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.62) contrast(1.08) brightness(.82); }
.home-hero-preview .hero-grid { grid-template-columns: minmax(0, 690px) minmax(340px, 420px); gap: clamp(48px, 6vw, 96px); align-items: center; }
.home-hero-preview .hero-copy { max-width: 690px; }
.home-hero-preview .hero-copy h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(36px, 3.35vw, 52px);
  line-height: 1.08;
  font-weight: 540;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 52px rgba(0,0,0,.42);
}
.home-hero-preview .hero-copy h1 em { color: #21d69b; font-weight: 420; }
.home-hero-preview .hero-microcopy {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100% !important;
  min-height: 58px;
  padding: 0 24px 0 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-left-color: rgba(33,214,155,.72);
  border-radius: 999px;
  background: rgba(3,17,31,.38);
  color: rgba(255,255,255,.94);
  box-shadow: 0 20px 56px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  font: 800 clamp(15px, 1.36vw, 19px)/1.2 "DM Sans" !important;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.home-hero-preview .hero-microcopy::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-right: 14px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(33,214,155,.42);
}
.hero-roi-panel { width: 100%; max-width: 320px; justify-self: end; }
.hero-roi-panel .card-container {
  width: 320px;
  background: linear-gradient(
    to top right,
    rgba(7, 17, 29, .98),
    rgba(10, 28, 47, .92) 40%,
    rgba(20, 46, 68, .78) 65%,
    rgba(7, 17, 29, .96) 100%
  );
  padding: 4px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 28px 74px rgba(0,0,0,.38), 0 0 0 1px rgba(33,214,155,.24), 0 0 34px rgba(3,17,31,.34);
}
.hero-roi-panel .card-container .title-card {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  justify-content: center;
  color: rgba(255,255,255,.92);
  text-align: center;
}
.hero-roi-panel .card-container .title-card p {
  margin: 0;
  width: 100%;
  font-size: 13px;
  font-weight: 850;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(3,17,31,.82);
}
.hero-roi-panel .card-container .card-content {
  width: 100%;
  height: 100%;
  background-color: rgba(3, 17, 31, .72);
  border-radius: 30px;
  color: rgba(216, 222, 224, .68);
  font-size: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(11px) saturate(1.12);
}
.hero-roi-panel .card-container .card-content .title {
  margin: 0;
  font-weight: 600;
  color: #bab9b9;
  text-align: center;
}
.hero-roi-panel .card-container .card-content .plain {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-roi-panel .card-container .card-content .plain span {
  display: block;
}
.hero-roi-panel .card-container .card-content .plain :nth-child(1) {
  width: fit-content;
  padding: 8px 10px 9px;
  border: 1px solid rgba(33,214,155,.34);
  border-radius: 14px;
  background: rgba(7,17,29,.48);
  box-shadow: 0 14px 34px rgba(3,17,31,.24), inset 0 1px 0 rgba(255,255,255,.1);
  font-size: 40px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(33,214,155,.32), 0 12px 26px rgba(0,0,0,.45);
}
.hero-roi-panel .card-container .card-content .plain :nth-child(2) {
  margin-top: 9px;
  color: rgba(225,255,246,.96);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-roi-panel .card-container .card-content .description {
  margin: 0;
  color: rgba(216, 222, 224, .66);
  line-height: 1.45;
  text-align: center;
}
.hero-roi-action-stack {
  display: grid;
  gap: 9px;
  width: 100%;
}
.hero-roi-panel .card-container .card-content .card-btn {
  background: rgba(7,17,29,.88);
  padding: 8px;
  border: 1px solid rgba(33,214,155,.72);
  width: 100%;
  border-radius: 8px;
  color: #21d69b;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(3,17,29,.26);
}
.hero-roi-panel .card-container .card-content .card-btn:hover {
  color: #21d69b;
  background: rgba(10,28,47,.95);
  text-shadow: 0 0 8px rgba(33,214,155,.62);
  transform: scale(1.03);
}
.hero-roi-panel .card-container .card-content .card-btn:active {
  transform: scale(1);
}
.home-hero-preview .button-outline { border-color: rgba(255,255,255,.72); color: var(--white); }
.home-hero-preview .button-outline:hover { border-color: var(--green); background: var(--green); color: var(--navy-950); }

.strategic-boxes-section {
  position: relative;
  z-index: 5;
  padding: 34px 0 40px;
  background:
    linear-gradient(180deg, #07111d, #0a1625);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.investor-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; background: transparent; }
.investor-benefits article {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 20px 22px 19px;
  border-radius: 22px;
  background: #07182e;
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  text-align: center;
  box-shadow: 0 20px 54px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .28s ease, box-shadow .28s ease;
}
.investor-benefits article::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 185%;
  background-image: linear-gradient(180deg, transparent 0%, rgba(33,214,155,.42) 38%, rgba(0,183,255,.24) 56%, transparent 100%);
  animation: ibaRotatingFrame 8s linear infinite;
  opacity: .72;
  filter: blur(.2px);
  transition: all .2s linear;
}
.investor-benefits article::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33,214,155,.075), transparent 38%),
    linear-gradient(145deg, rgba(14,39,64,.34), rgba(7,17,29,.96)),
    #07182e;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.investor-benefits article:hover { transform: translateY(-4px); box-shadow: 0 26px 64px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05); }
.investor-benefits article:hover::before {
  background-image: linear-gradient(180deg, transparent 0%, rgba(33,214,155,.56) 38%, rgba(0,183,255,.3) 56%, transparent 100%);
  animation-duration: 7s;
}
.investor-benefits small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 286px);
  min-height: 40px;
  margin: 0 auto;
  padding: 8px 16px;
  border: 1px solid rgba(33,214,155,.42);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(33,214,155,.16), rgba(255,255,255,.045)),
    rgba(3,17,31,.46);
  color: rgba(225,255,246,.95);
  box-shadow: 0 14px 34px rgba(3,17,29,.28), 0 0 24px rgba(33,214,155,.08), inset 0 1px 0 rgba(255,255,255,.11);
  font-size: clamp(12px, .92vw, 14px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.investor-benefits h2 {
  position: relative;
  z-index: 1;
  margin: 15px auto 0;
  max-width: 340px;
  color: var(--white);
  font-size: clamp(20px, 1.52vw, 24px);
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}
@keyframes ibaRotatingFrame {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-home {
  padding-top: 104px;
  background:
    radial-gradient(circle at 10% 8%, rgba(194,220,223,.045), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(33,214,155,.045), transparent 28%),
    linear-gradient(180deg, #061521 0%, #081a28 58%, #f7f4ed 58%, #ffffff 100%);
}
.about-simple-heading { margin-bottom: 48px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.about-simple-heading h2 { margin: 0; font-size: clamp(34px, 3.6vw, 52px); font-weight: 520; }
.proof-heading h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); font-weight: 520; }
.proof-heading h2 em { color: var(--green-dark); font-style: normal; font-weight: 420; }
.about-overview-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: clamp(20px, 2.4vw, 32px) clamp(28px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(174,207,210,.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(4,18,30,.98), rgba(7,27,42,.96)),
    #061521;
  box-shadow: 0 30px 90px rgba(2,10,20,.3), inset 0 1px 0 rgba(255,255,255,.065);
}
.about-overview-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,.9), transparent 72%);
}
.about-overview-grid::after {
  content: "";
  position: absolute;
  inset: -35% auto auto 52%;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139,176,186,.09), transparent 66%);
  filter: blur(4px);
  opacity: .62;
}
.about-intro-copy { padding-right: 8px; }
.about-intro-copy .lead { margin-bottom: 24px; }
.about-intro-copy p { color: #2d4452; font-size: 18.5px; line-height: 1.68; font-weight: 560; }
.about-intro-copy .lead { color: var(--ink); font-size: 24px; font-weight: 680; letter-spacing: -.02em; }
.about-intro-copy p:last-child { margin-bottom: 0; }
.about-home-link { margin-top: 26px; }
.about-benefits-copy {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: block;
  min-width: 0;
}
.platform-copy {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: min(100%, 920px);
}
.platform-kicker {
  width: fit-content;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(150,195,193,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(198,239,229,.82);
  font: 850 10px/1 "DM Sans";
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.platform-copy h2 {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  text-wrap: balance;
  font-size: clamp(22px, 1.62vw, 28px);
  line-height: 1.08;
  font-weight: 820;
  letter-spacing: 0;
  white-space: nowrap;
}
.platform-lead {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(220,232,238,.72);
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.56;
  font-weight: 560;
}
.platform-action-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: clamp(28px, 4vw, 54px);
  width: 100%;
  margin-top: 0;
}
.platform-action-row > a {
  width: 100%;
}
.about-secondary-button {
  position: relative;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(210,226,230,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  color: rgba(232,239,242,.84);
  font: 800 13px/1 "DM Sans";
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.about-secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(181,217,211,.26);
  background: rgba(255,255,255,.055);
  color: #ffffff;
}
.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: clamp(386px, 29vw, 430px);
  height: 100%;
  margin-top: 0;
}
.about-benefit-grid article {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  grid-template-rows: auto auto 1fr;
  column-gap: 8px;
  align-items: start;
  overflow: hidden;
  padding: 20px 20px 22px;
  border: 1px solid rgba(158,196,199,.13);
  border-top-color: rgba(178,211,213,.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(204,227,231,.06), transparent 36%),
    linear-gradient(150deg, rgba(11,35,53,.94), rgba(4,18,31,.98) 74%);
  box-shadow: 0 16px 42px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.065);
  text-align: left;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.about-benefit-grid article > div {
  position: relative;
  z-index: 1;
  display: contents;
}
.about-benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.045), transparent 35%, rgba(179,213,216,.04) 100%);
  opacity: .68;
  pointer-events: none;
}
.about-benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(188,220,218,.3);
  box-shadow: 0 24px 58px rgba(0,0,0,.24), 0 0 0 1px rgba(190,218,218,.045), inset 0 1px 0 rgba(255,255,255,.085);
}
.about-benefit-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188,220,218,.32), transparent);
  opacity: .38;
}
.benefit-icon {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(192,235,224,.72);
  border: 1px solid rgba(174,207,210,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.065);
}
.benefit-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-benefit-grid h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 20px 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}
.about-benefit-grid p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  color: rgba(216,229,235,.69);
  font-size: 15.5px;
  line-height: 1.48;
  font-weight: 560;
}
.about-benefit-grid strong {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(175,219,210,.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(201,232,226,.08), rgba(255,255,255,.025)),
    rgba(3,17,31,.66);
  color: rgba(232,248,244,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  font: 900 13.5px/1 "DM Sans";
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: lowercase;
  animation: benefitBadgeSignal 3.2s ease-in-out infinite;
}
.about-account-button {
  position: relative;
  min-width: 206px;
  min-height: 54px;
  padding: 0 48px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(176,224,213,.46);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(194,231,222,.08), rgba(255,255,255,.025)),
    #061521;
  color: rgba(199,239,229,.9);
  box-shadow: 0 16px 38px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.09);
  font: 900 13px/1 "DM Sans";
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, border-color .22s ease;
}
.about-account-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}
.about-account-button::after {
  content: "->";
  position: absolute;
  right: 19px;
  color: rgba(199,239,229,.9);
  font: 900 17px/1 "DM Sans";
  transition: transform .22s ease, color .22s ease;
}
.about-account-button:hover {
  transform: translateY(-2px);
  border-color: rgba(200,234,226,.68);
  color: #ffffff;
  box-shadow: 0 22px 52px rgba(0,0,0,.2), 0 0 0 1px rgba(200,234,226,.08);
}
.about-account-button:hover::before {
  left: 108%;
}
.about-account-button:hover::after {
  transform: translateX(4px);
  color: #ffffff;
}
@keyframes benefitBadgeSignal {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    border-color: rgba(175,219,210,.26);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 22px rgba(179,213,216,.055);
    border-color: rgba(195,226,221,.42);
  }
}
.about-film-heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 14px 15px 14px 18px;
  border: 1px solid rgba(174,207,210,.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(198,222,224,.065), transparent 34%),
    rgba(255,255,255,.045);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.about-film-heading small {
  display: block;
  margin-bottom: 7px;
  color: rgba(198,239,229,.78);
  font: 850 9px/1 "DM Sans";
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-film-heading h3 { max-width: 430px; margin: 0; color: #ffffff; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.12; }
.about-film-heading span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(202,235,227,.88);
  color: var(--navy-950);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.about-film {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}
.about-film .home-video-frame {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
  margin-left: 0;
  overflow: hidden;
  border-radius: 22px;
  border-color: rgba(174,207,210,.2);
  background: rgba(0,0,0,.24);
  box-shadow: 0 28px 76px rgba(0,0,0,.3), 0 0 0 1px rgba(202,226,228,.045);
}
.about-film .hero-video-player { object-fit: cover !important; }

/* Midnight platform frame: same family as the hero and ROI cards. */
.about-home {
  background:
    radial-gradient(circle at 8% 6%, rgba(12,144,105,.045), transparent 28%),
    linear-gradient(180deg, #f7f4ed 0%, #ffffff 100%);
}
.about-overview-grid {
  border-color: rgba(174,207,210,.16);
  background:
    radial-gradient(circle at 13% 8%, rgba(33,214,155,.1), transparent 30%),
    radial-gradient(circle at 83% 18%, rgba(142,178,189,.12), transparent 35%),
    linear-gradient(145deg, rgba(4,18,30,.98), rgba(7,27,42,.96) 52%, rgba(3,17,31,.99)),
    #061521;
  box-shadow:
    0 34px 92px rgba(2,10,20,.28),
    0 0 0 1px rgba(33,214,155,.07),
    inset 0 1px 0 rgba(255,255,255,.075);
  backdrop-filter: blur(10px) saturate(1.08);
}
.about-overview-grid::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.018) 1px, transparent 1px);
  opacity: .76;
}
.about-overview-grid::after {
  background: radial-gradient(circle, rgba(139,176,186,.1), transparent 67%);
  opacity: .68;
}
.platform-kicker {
  border-color: rgba(33,214,155,.28);
  background: rgba(3,17,31,.44);
  color: rgba(225,255,246,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(3,17,31,.16);
}
.platform-copy h2 {
  color: #ffffff;
}
.platform-lead {
  color: rgba(220,232,238,.74);
}
.about-benefit-grid article {
  border-color: rgba(16,38,51,.12);
  border-top-color: rgba(12,144,105,.22);
  background:
    radial-gradient(circle at 92% 0%, rgba(12,144,105,.045), transparent 38%),
    linear-gradient(150deg, rgba(255,255,255,.98), rgba(246,250,249,.9) 74%);
  box-shadow: 0 16px 44px rgba(4,20,33,.075), inset 0 1px 0 rgba(255,255,255,.92);
}
.about-benefit-grid article::before {
  background: linear-gradient(120deg, rgba(255,255,255,.72), transparent 38%, rgba(16,38,51,.025) 100%);
  opacity: .62;
}
.about-benefit-grid article:hover {
  border-color: rgba(12,144,105,.28);
  box-shadow: 0 20px 54px rgba(4,20,33,.105), 0 0 0 1px rgba(12,144,105,.035), inset 0 1px 0 rgba(255,255,255,.94);
}
.about-benefit-grid article::after {
  background: linear-gradient(90deg, transparent, rgba(12,144,105,.24), transparent);
  opacity: .42;
}
.about-benefit-grid strong {
  border-color: rgba(12,144,105,.24);
  background:
    linear-gradient(135deg, rgba(12,144,105,.065), rgba(255,255,255,.8)),
    rgba(255,255,255,.86);
  color: var(--green-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}
.benefit-icon {
  border-color: rgba(12,144,105,.16);
  background: rgba(12,144,105,.055);
  color: var(--green-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}
.about-benefit-grid h3 {
  color: #07182e;
}
.about-benefit-grid p {
  color: #5f7280;
}
.about-film-heading {
  border-color: rgba(16,38,51,.12);
  background:
    radial-gradient(circle at 92% 0%, rgba(12,144,105,.06), transparent 34%),
    rgba(255,255,255,.76);
  color: #07182e;
  box-shadow: 0 16px 42px rgba(4,20,33,.075), inset 0 1px 0 rgba(255,255,255,.88);
}
.about-film-heading small {
  color: var(--green-dark);
}
.about-film-heading h3 {
  color: #07182e;
}
.about-film-heading span {
  background: #07182e;
  color: #dff9ef;
  box-shadow: 0 12px 26px rgba(4,20,33,.16);
}
.about-film .home-video-frame {
  border-color: rgba(16,38,51,.16);
  background: #f3f7f6;
  box-shadow: 0 22px 62px rgba(4,20,33,.12), 0 0 0 1px rgba(255,255,255,.78);
}
.about-account-button {
  border-color: rgba(16,38,51,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent),
    #07182e;
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(4,20,33,.16), inset 0 1px 0 rgba(255,255,255,.1);
}
.about-account-button::after {
  color: #dff9ef;
}
.about-account-button:hover {
  border-color: rgba(12,144,105,.34);
  color: #dff9ef;
  box-shadow: 0 20px 52px rgba(4,20,33,.2);
}
.about-secondary-button {
  border-color: rgba(16,38,51,.14);
  background: rgba(255,255,255,.72);
  color: #173247;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}
.about-secondary-button:hover {
  border-color: rgba(12,144,105,.26);
  background: #ffffff;
  color: #07182e;
}
@keyframes benefitBadgeSignal {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    border-color: rgba(12,144,105,.2);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 20px rgba(12,144,105,.055);
    border-color: rgba(12,144,105,.32);
  }
}
.about-benefit-grid article {
  display: flex;
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.about-benefit-grid article::before,
.about-benefit-grid article::after {
  display: none;
}
.about-benefit-grid article:hover {
  border-color: transparent;
  box-shadow: none;
}
.about-benefit-grid article {
  display: flex;
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.about-benefit-grid article::before,
.about-benefit-grid article::after {
  display: none;
}
.about-benefit-grid article:hover {
  border-color: transparent;
  box-shadow: none;
}
.about-benefit-grid .card-container {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(
    to top right,
    rgba(7, 17, 29, .98),
    rgba(10, 28, 47, .92) 40%,
    rgba(20, 46, 68, .78) 65%,
    rgba(7, 17, 29, .96) 100%
  );
  padding: 4px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 58px rgba(4,20,33,.18), 0 0 0 1px rgba(33,214,155,.18);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.about-benefit-grid article:hover .card-container {
  transform: translateY(-2px);
  box-shadow: 0 28px 66px rgba(4,20,33,.24), 0 0 0 1px rgba(33,214,155,.28), 0 0 26px rgba(3,17,31,.22);
}
.about-benefit-grid .card-container .title-card {
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 14px 16px;
  justify-content: center;
  color: rgba(255,255,255,.92);
}
.about-benefit-grid .card-container .title-card p {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(10px, .76vw, 12px);
  font-weight: 650;
  font-style: italic;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow: 2px 2px 6px rgba(3,17,31,.82);
}
.about-benefit-grid .card-container .card-content {
  width: 100%;
  flex: 1;
  min-height: 0;
  background-color: rgba(3, 17, 31, .72);
  border-radius: 30px;
  color: rgba(216, 222, 224, .68);
  font-size: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(11px) saturate(1.12);
}
.about-benefit-grid .card-container .card-content .plain {
  margin: 0;
}
.about-benefit-grid .card-container .card-content .plain span {
  display: block;
}
.about-benefit-grid .card-container .card-content .plain :nth-child(1) {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px 8px;
  border: 1px solid rgba(33,214,155,.34);
  border-radius: 14px;
  background: rgba(7,17,29,.48);
  box-shadow: 0 14px 34px rgba(3,17,31,.24), inset 0 1px 0 rgba(255,255,255,.1);
  color: #fff;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(33,214,155,.32), 0 12px 26px rgba(0,0,0,.45);
}
.about-benefit-grid .card-container .card-content .plain :nth-child(2) {
  margin-top: 8px;
  color: rgba(225,255,246,.96);
  font-size: clamp(12px, .88vw, 14px);
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.1;
  text-transform: uppercase;
}
.about-benefit-grid .card-container .card-content .description {
  margin: 0;
  color: rgba(216, 222, 224, .66);
  font-size: clamp(12px, .9vw, 13.5px);
  line-height: 1.48;
  font-weight: 620;
}

.about-disclosures { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 56px; }
.about-disclosures details { min-height: 78px; border: 1px solid var(--line); border-top-color: rgba(12,144,105,.32); border-radius: 16px; background: rgba(255,255,255,.74); transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.about-disclosures details:hover, .about-disclosures details[open] { background: var(--white); box-shadow: 0 18px 50px rgba(4,20,33,.09); transform: translateY(-3px); }
.about-disclosures summary { min-height: 78px; padding: 20px 22px; cursor: pointer; list-style: none; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.about-disclosures summary::-webkit-details-marker { display: none; }
.about-disclosures summary::after {
  content: "↓";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12,144,105,.35);
  border-radius: 999px;
  background: rgba(33,214,155,.08);
  color: var(--green-dark);
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(12,144,105,.12);
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.about-disclosures details[open] summary::after {
  transform: rotate(180deg);
  background: #21d69b;
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(12,144,105,.26);
}
.about-disclosures summary strong { font: 650 18px "DM Sans"; }
.about-disclosures summary em { display: none; }
.about-disclosures details[open] summary em { color: var(--green-dark); }
.about-disclosures ul { margin: -3px 24px 28px; padding: 20px 0 0 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; animation: fade .24s ease both; }
.about-disclosures li { margin: 8px 0; padding-left: 5px; }
.about-disclosures li::marker { color: var(--green-dark); }

.premium-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 70px rgba(4,20,33,.08); }
.premium-benefits article { min-height: 138px; padding: 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; transition: background .25s ease, transform .25s ease; }
.premium-benefits article:last-child { border-right: 0; }
.premium-benefits article:hover { transform: translateY(-5px); background: var(--green-soft); }
.premium-benefits small { margin-bottom: 12px; color: var(--green-dark); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.premium-benefits strong { font: 650 18px "DM Sans"; line-height: 1.2; }

.proof-home { padding: 92px 0; background: linear-gradient(180deg, #0b1828, #07111d); }
.proof-heading { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: end; margin-bottom: 44px; }
.proof-heading h2 { white-space: nowrap; }
.proof-heading h2 em { color: #21d69b; }
.proof-heading > p { margin: 0 0 5px; color: rgba(255,255,255,.6); font-size: 15px; }
.proof-home .stats-grid { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.025); }
.proof-home .stats-grid article { min-height: 180px; }
.proof-home .metric { color: #21d69b; font-size: clamp(37px, 4vw, 54px); }
.proof-home .data-note { color: rgba(255,255,255,.38); }
.key-figures article { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); }
.key-figures span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    z-index: 160;
    width: 100%;
    min-height: calc(100vh - 68px);
    padding: 46px 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 23px;
    background: rgba(3,17,31,.99);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav a { font-size: 22px; }
  .menu-open .main-nav { transform: none; }
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 42px; }
  .card-grid.four, .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gate-strip { grid-template-columns: repeat(2, 1fr); }
  .gate-strip span:nth-child(2) { border-right: 0; }
  .gate-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .opportunity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunity-card,
  .opportunity-cta { grid-column: span 1; }
  .opportunity-feature-card { grid-column: span 1; }
  .opportunity-video-card { grid-column: span 1; align-self: stretch; min-height: 382px; aspect-ratio: auto; }
  .map-markets { grid-template-columns: repeat(2, 1fr); }
  .market-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-project-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-project-list .project-card,
  .home-project-list .project-card:nth-last-child(2) { grid-column: auto; }
  .service-block { grid-template-columns: 110px minmax(0, 1fr); gap: 30px; }
  .darin-service-group { grid-template-columns: 1fr; gap: 28px; }
  .darin-service-title { position: static; }
  .darin-service-items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); gap: 42px; align-items: center; }
  .about-page-hero .about-film-heading,
  .about-page-hero .home-video-frame { margin-left: auto; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .hero-grid, .split, .split-balanced, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .home-hero-preview .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-roi-panel { max-width: 320px; justify-self: start; }
  .page-hero { min-height: auto; }
  .hero-side { max-width: 620px; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar article, .trust-bar article:first-child { min-height: 110px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .card-grid, .card-grid.four, .team-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
  .service-content ul { grid-template-columns: 1fr; }
  .darin-service-items { grid-template-columns: 1fr; }
  .darin-service-items div { min-height: 150px; }
  .about-page-hero { min-height: auto; padding-bottom: 74px; }
  .about-page-hero .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: 32px; align-items: center; }
  .about-page-hero .hero-copy > p:last-child { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article:nth-child(2) { border-right: 0; }
  .stats-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .process-step { grid-template-columns: 80px 1fr; }
  .process-benefit { grid-column: 2; }
  .market-layout { grid-template-columns: 1fr; }
  .market-tabs { position: static; display: flex; overflow-x: auto; }
  .market-tab { min-width: 210px; padding: 14px; border: 1px solid var(--line); }
  .market-panel-grid { grid-template-columns: 1fr; }
  .project-list { grid-template-columns: 1fr; }
  .project-portfolio { grid-template-columns: 1fr; }
  .portfolio-feature { grid-template-columns: 1fr; gap: 34px; padding: 32px; }
  .portfolio-feature-media { min-height: 390px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .featured-case-grid { grid-template-columns: 1fr; }
  .featured-case-media { min-height: 410px; }
  .europe-map, .europe-map > img { min-height: 700px; }
  .home-video-frame { margin-left: 0; }
  .home-hero-preview { min-height: 720px; padding-bottom: 90px; }
  .home-hero-preview::before { background: linear-gradient(90deg, rgba(3,17,31,.86), rgba(3,17,31,.49)); }
  .investor-benefits { grid-template-columns: 1fr; }
  .investor-benefits article { min-height: 142px; }
  .investor-benefits article:hover { transform: none; }
  .about-overview-grid, .proof-heading { grid-template-columns: 1fr; gap: 42px; }
  .platform-action-row { grid-template-columns: 1fr; gap: 12px; margin-top: 0; }
  .platform-copy h2 { max-width: 100%; white-space: normal; }
  .about-benefit-grid { min-height: auto; }
  .about-film .home-video-frame { height: auto; aspect-ratio: 16 / 9; }
  .about-film-heading, .about-film .home-video-frame { width: 100%; margin-left: 0; }
  .about-disclosures { grid-template-columns: 1fr; }
  .premium-benefits { grid-template-columns: repeat(2, 1fr); }
  .premium-benefits article:nth-child(2) { border-right: 0; }
  .premium-benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  html, body { overflow-x: clip; }
  body { font-size: 15px; }
  .shell { width: min(100% - 36px, var(--max)); }
  .site-header { height: 68px; padding-inline: 18px; }
  .brand-copy small { display: none; }
  .page-hero { padding: 124px 0 60px; }
  .home-hero { padding-bottom: 0; flex-direction: column; align-items: stretch; justify-content: center; }
  .home-hero > .hero-grid { width: min(100% - 36px, var(--max)); }
  .hero-copy h1, .home-hero .hero-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .mobile-only { display: inline; }
  .home-hero .hero-copy h1 em { font-size: .92em; }
  .hero-copy > p:last-of-type { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-value-strip { position: relative; width: 100%; margin-top: 55px; }
  .hero-values { grid-template-columns: 1fr; }
  .hero-values article, .hero-values article:first-child { border-left: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 74px 0; }
  .section-compact { padding: 58px 0; }
  .section-title { margin-bottom: 38px; }
  .section-title h2, .split-copy h2 { font-size: 40px; }
  .section-title p:last-child { font-size: 16px; }
  .ratio-hero { min-height: 350px; }
  .card-grid, .card-grid.four, .team-grid, .insight-grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .capability { min-height: auto; }
  .service-block { grid-template-columns: 1fr; gap: 20px; padding: 38px 0; }
  .service-index { width: 58px; height: 58px; }
  .service-content h2 { font-size: 34px; }
  .service-content .lead { font-size: 17px; }
  .services-hero .hero-copy h1,
  .about-page-hero .hero-copy h1 { font-size: clamp(38px, 11vw, 52px); }
  .about-page-hero .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-page-hero .about-film-heading,
  .about-page-hero .home-video-frame { width: 100%; margin-left: 0; }
  .darin-service-group { padding: 42px 0; }
  .darin-service-title h2 { font-size: 31px; }
  .darin-service-items p { font-size: 17px; }
  .number-list article { grid-template-columns: 38px 1fr; }
  .number-list .arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process::before { left: 27px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-number { width: 56px; height: 56px; }
  .process-benefit { grid-column: 2; }
  .gate-strip { grid-template-columns: 1fr; }
  .gate-strip span { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .market-copy { padding: 25px; }
  .project-toolbar { align-items: flex-start; flex-direction: column; }
  .project-card .media-placeholder { height: 260px; min-height: 260px; }
  .project-media-pair { min-height: 260px; }
  .project-hero-montage { min-height: 350px; }
  .project-hero-montage.two-images { grid-template-columns: 1fr; grid-template-rows: repeat(2, 220px); min-height: auto; }
  .portfolio-feature { padding: 24px; border-radius: 22px; }
  .portfolio-feature-copy h2 { font-size: clamp(34px, 10vw, 46px); }
  .portfolio-feature-copy .lead { font-size: 16px; }
  .portfolio-feature-media { grid-template-columns: 1fr; min-height: auto; }
  .portfolio-feature-media figure { min-height: 280px; }
  .team-group-head { align-items: flex-start; flex-direction: column; }
  .team-group-head p { font-size: 14px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .contact-form label.full { grid-column: auto; }
  .whatsapp-float { right: 0; bottom: 118px; border-radius: 999px 0 0 999px; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner div { justify-content: flex-end; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .benefit-cloud { justify-content: flex-start; margin-top: 38px; }
  .solution-title { text-align: left; }
  .solution-title > p:last-child { margin-inline: 0; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-card,
  .opportunity-cta { grid-column: auto; }
  .opportunity-feature-card { grid-column: auto; min-height: auto; padding: 28px; }
  .opportunity-feature-card h3 { font-size: clamp(30px, 9vw, 42px); }
  .opportunity-video-card { min-height: 330px; }
  .opportunity-video-card .video-card-button { margin: 14px; min-height: 54px; font-size: 12px; }
  .opportunity-card, .opportunity-cta { min-height: 360px; }
  .opportunity-card { grid-template-rows: 205px 1fr; }
  .market-card-grid { grid-template-columns: 1fr; }
  .market-card img { height: 210px; }
  .featured-case-media { grid-template-columns: 1fr; min-height: auto; }
  .featured-case-media figure { min-height: 290px; }
  .europe-map, .europe-map > img { min-height: 980px; }
  .map-markets { inset: auto 12px 12px; grid-template-columns: 1fr; }
  .map-markets > span { min-height: 0; padding: 14px 16px; font-size: 12px; }
  .map-markets small { font-size: 9px; }
  .text-only-hero { min-height: auto; }
  .text-only-hero .hero-copy h1,
  .projects-hero .hero-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .team-hero .hero-copy h1 { font-size: 43px; }
  .home-hero-preview { min-height: auto; padding: 126px 0 72px; }
  .home-hero-preview::before { background: linear-gradient(0deg, rgba(3,17,31,.88) 0%, rgba(3,17,31,.61) 78%, rgba(3,17,31,.43)); }
  .home-hero-preview .hero-grid { padding-bottom: 0; }
  .home-hero-preview .hero-copy h1 { font-size: clamp(32px, 9vw, 42px); line-height: 1.1; }
  .home-hero-preview .hero-microcopy {
    min-height: auto;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 13px !important;
    letter-spacing: .03em;
  }
  .home-hero-preview .hero-microcopy::before { width: 24px; margin-right: 10px; }
  .hero-roi-panel { max-width: min(100%, 320px); }
  .hero-roi-panel .card-container { width: min(100%, 320px); }
  .strategic-boxes-section { padding: 18px 0 30px; }
  .investor-benefits { width: 100%; border-inline: 0; }
  .investor-benefits article { padding: 20px 16px; }
  .investor-benefits small { width: min(100%, 286px); min-height: 40px; font-size: 12px; }
  .investor-benefits h2 { font-size: 22px; }
  .about-home { padding-top: 78px; }
  .about-overview-grid { gap: 34px; }
  .platform-copy h2 { min-height: auto; font-size: clamp(22px, 7vw, 30px); white-space: normal; }
  .platform-lead { font-size: 15px; }
  .about-account-button, .about-secondary-button { width: 100%; }
  .about-benefit-grid { grid-template-columns: 1fr; }
  .about-benefit-grid article { min-height: auto; padding: 0; }
  .about-benefit-grid p { font-size: 15px; }
  .about-benefit-grid strong { white-space: nowrap; text-align: center; }
  .about-film-heading { align-items: center; }
  .about-film-heading h3 { text-align: left; }
  .about-disclosures summary { min-height: 78px; }
  .about-disclosures summary strong { font-size: 16px; }
  .about-disclosures summary em { display: none; }
  .about-disclosures ul { margin-left: 36px; }
  .premium-benefits { grid-template-columns: 1fr; }
  .premium-benefits article, .premium-benefits article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .premium-benefits article:last-child { border-bottom: 0; }
  .proof-home { padding: 74px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .opportunity-video-card video { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
