:root {
  --ink: #f3f7ff;
  --muted: #9dacbf;
  --navy-950: #020817;
  --navy-900: #030d21;
  --navy-800: #071730;
  --line: rgba(173, 198, 238, 0.15);
  --blue: #155bff;
  --cyan: #4aa3ff;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-950); }
::selection { color: white; background: rgba(21, 91, 255, .72); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 77% 10%, rgba(21, 91, 255, 0.11), transparent 31%),
    var(--navy-950);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
.scroll-progress { position: fixed; z-index: 120; top: 0; left: 0; right: 0; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--blue), #66b8ff); box-shadow: 0 0 14px rgba(64, 137, 255, .8); transform: scaleX(0); transform-origin: left; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid #79a5ff; outline-offset: 4px; }

.brand-intro { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; color: white; background: #020817; pointer-events: none; animation: introExit .7s cubic-bezier(.76,0,.24,1) 1.5s forwards; }
.brand-intro::after { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.brand-intro-inner { position: relative; z-index: 1; display: grid; justify-items: center; }
.brand-intro img { width: 68px; height: 68px; padding: 10px; object-fit: contain; border-radius: 18px; background: #f4f7ff; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 70px rgba(21,91,255,.28); opacity: 0; transform: scale(.72) rotate(-7deg); animation: introMark .7s cubic-bezier(.2,.9,.25,1.2) .12s forwards; }
.brand-intro-name { margin-top: 25px; font: 600 17px/1 "Manrope"; letter-spacing: .48em; text-indent: .48em; opacity: 0; transform: translateY(10px); animation: introRise .55s ease .42s forwards; }
.brand-intro-route { width: min(330px, 70vw); margin-top: 34px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; color: #6380ae; font: 600 8px/1 "Manrope"; letter-spacing: .2em; opacity: 0; animation: introRise .5s ease .62s forwards; }
.brand-intro-route i { height: 1px; position: relative; overflow: visible; background: rgba(100,143,221,.24); }
.brand-intro-route i::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #4d8cff, transparent); transform: scaleX(0); animation: introLine .75s ease .72s forwards; }
.brand-intro-route b { position: absolute; width: 5px; height: 5px; left: 0; top: -2px; border-radius: 50%; background: #6bb6ff; box-shadow: 0 0 14px #155bff; opacity: 0; animation: introTravel .8s ease .78s forwards; }
.brand-intro p { margin: 22px 0 0; color: #7198e5; font: 600 9px/1 "Manrope"; letter-spacing: .25em; opacity: 0; animation: introRise .45s ease 1.05s forwards; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.section-shell { width: var(--page); margin-inline: auto; }
.site-header {
  width: min(1240px, calc(100vw - 32px));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  z-index: 50;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(151, 179, 225, 0.12);
  border-radius: 22px;
  background: rgba(2, 10, 27, 0.58);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height 300ms ease, background 300ms ease, border 300ms ease, padding 300ms ease, top 300ms ease, box-shadow 300ms ease;
}
.site-header::before { content: ""; position: absolute; left: 18%; right: 18%; top: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(80, 142, 255, .62), transparent); opacity: .65; }
.site-header.is-scrolled {
  height: 68px;
  width: min(1240px, calc(100vw - 24px));
  top: 10px;
  border-color: rgba(151, 179, 225, 0.2);
  background: rgba(2, 8, 23, 0.88);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.36);
}
.brand { display: inline-flex; align-items: center; gap: 13px; font: 600 14px/1 "Manrope"; letter-spacing: 0.31em; position: relative; z-index: 2; }
.brand img { width: 39px; height: 39px; padding: 6px; object-fit: contain; border-radius: 11px; background: #f4f7ff; box-shadow: 0 8px 24px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(8, 28, 70, .08); transition: transform 300ms cubic-bezier(.2,.8,.2,1); }
.brand:hover img { transform: rotate(-4deg) scale(1.04); }
.desktop-nav { display: flex; align-items: center; gap: 3px; margin-left: auto; margin-right: auto; padding: 5px; border: 1px solid rgba(151, 179, 225, 0.1); border-radius: 999px; background: rgba(5, 18, 43, .64); color: #8f9db1; font-size: 13px; }
.desktop-nav a { padding: 8px 16px; border-radius: 999px; transition: color 200ms ease, background 200ms ease; position: relative; }
.desktop-nav a:hover { color: #eef4ff; background: rgba(255,255,255,.04); }
.desktop-nav a.is-active { color: white; background: rgba(74, 111, 178, .13); }
.desktop-nav a.is-active::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); transform: translateX(-50%); box-shadow: 0 0 8px var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.lang-switch { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(151, 179, 225, 0.1); border-radius: 999px; background: rgba(5, 18, 43, .56); }
.lang-switch span { width: 1px; height: 14px; background: var(--line); }
.lang-switch button { padding: 4px 2px; border: 0; background: transparent; color: #63738a; font: 600 11px/1 "Manrope"; letter-spacing: .12em; cursor: pointer; transition: color 200ms ease; }
.lang-switch button:hover { color: #dce7fa; }
.lang-switch button[aria-pressed="true"] { color: #75a1ff; }
.header-cta { min-height: 44px; padding: 4px 5px 4px 17px; display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(99, 145, 255, 0.5); border-radius: 999px; background: linear-gradient(135deg, #0c43c4, var(--blue)); font-size: 13px; font-weight: 600; box-shadow: 0 10px 28px rgba(21, 91, 255, .22); transition: transform 200ms ease, box-shadow 200ms ease; }
.header-cta i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .14); font-style: normal; transition: transform 250ms ease, background 250ms ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(21, 91, 255, .34); }
.header-cta:hover i { transform: rotate(45deg); background: rgba(255,255,255,.22); }
.header-cta.is-floating {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  min-height: 48px;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(151, 179, 225, .16); border-radius: 50%; background: rgba(5, 18, 43, .76); cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; width: 16px; height: 1px; left: 12px; background: #eaf1ff; transition: transform 250ms ease, top 250ms ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 23px; }
.site-header.menu-open .menu-toggle span:first-child { top: 20px; transform: rotate(45deg); }
.site-header.menu-open .menu-toggle span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 760px; padding-top: 150px; position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr); column-gap: clamp(48px, 6vw, 92px); align-items: center; }
.hero-network { position: absolute; z-index: 0; width: calc(100vw - 8px); height: 100%; left: 50%; top: 0; transform: translateX(-50%); pointer-events: none; opacity: .78; mask-image: linear-gradient(to bottom, #000 8%, #000 76%, transparent 100%); }
.hero-grid { position: absolute; inset: 0 calc((100vw - var(--page)) / -2); opacity: 0.35; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 84px 84px; mask-image: radial-gradient(circle at 66% 35%, #000, transparent 65%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(95px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; background: rgba(21, 91, 255, 0.18); right: 5%; top: 12%; animation: drift 9s ease-in-out infinite; }
.hero-orb-two { width: 220px; height: 220px; background: rgba(74, 163, 255, 0.11); right: 36%; top: 46%; animation: drift 12s ease-in-out infinite reverse; }
.hero-copy { position: relative; z-index: 2; align-self: center; }
.eyebrow { margin: 0 0 26px; color: #7298ff; font: 600 12px/1.2 "Manrope"; letter-spacing: 0.22em; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; animation: rise 800ms 1.6s both; }
.hero-eyebrow span { width: 34px; height: 1px; background: var(--blue); }
h1, h2, h3, p { text-wrap: balance; }
h1, h2 { font-family: "Manrope", sans-serif; letter-spacing: -0.055em; font-weight: 500; }
.hero h1 { margin: 0; font-size: clamp(60px, 6.1vw, 90px); line-height: 0.94; animation: rise 900ms 1.7s both; }
.hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(148, 179, 255, 0.88); }
.hero-lead { width: min(620px, 100%); margin: 26px 0 0; color: #b8c4d5; font-size: clamp(17px, 1.35vw, 19px); line-height: 1.55; animation: rise 900ms 1.8s both; }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; animation: rise 900ms 1.9s both; }
.button { min-height: 54px; padding: 0 23px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; font-weight: 600; transition: transform 200ms ease, background 200ms ease, border 200ms ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--blue); box-shadow: 0 16px 46px rgba(21, 91, 255, 0.28); }
.button-primary:hover { background: #2870ff; }
.button-ghost { border: 1px solid var(--line); color: #c8d2e1; }
.button-ghost:hover { border-color: rgba(99, 145, 255, 0.55); }

.mission-control { position: relative; z-index: 2; width: 100%; padding: 18px; border: 1px solid rgba(116, 156, 226, .22); border-radius: 18px; background: linear-gradient(145deg, rgba(8, 26, 58, .9), rgba(3, 12, 29, .82)); box-shadow: 0 34px 90px rgba(0, 0, 0, .34), inset 0 1px rgba(255,255,255,.035); backdrop-filter: blur(18px); animation: markIn 1100ms 1.65s both; overflow: hidden; }
.mission-control::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 25%, rgba(61, 128, 255, .07) 50%, transparent 75%); transform: translateX(-100%); animation: missionScan 7s ease-in-out 1.4s infinite; }
.mission-header, .mission-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #6680a8; font: 600 9px/1 "Manrope"; letter-spacing: .16em; }
.mission-header { padding: 3px 3px 16px; border-bottom: 1px solid var(--line); }
.mission-header > div { display: flex; align-items: center; gap: 9px; color: #b8c9e7; }
.mission-live { width: 7px; height: 7px; border-radius: 50%; background: #36dc9a; box-shadow: 0 0 0 5px rgba(54,220,154,.08), 0 0 16px rgba(54,220,154,.65); animation: livePulse 2s ease-in-out infinite; }
.mission-list { display: grid; }
.mission-item { min-height: 76px; padding: 14px 3px; display: grid; grid-template-columns: 26px minmax(0,1fr) auto; align-items: center; gap: 12px; border-bottom: 1px solid rgba(173, 198, 238, .1); transition: background 250ms ease, padding 250ms ease; }
.mission-item:hover { padding-inline: 10px; background: rgba(42, 96, 193, .09); }
.mission-item.is-active { padding-inline: 10px; background: linear-gradient(90deg, rgba(31, 91, 211, .16), rgba(31, 91, 211, .025)); }
.mission-item.is-active::before { content: ""; align-self: stretch; width: 2px; margin-left: -10px; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.mission-item.is-active { grid-template-columns: 2px 26px minmax(0,1fr) auto; gap: 10px; }
.mission-item.is-active .mission-code { grid-column: 2; }
.mission-item.is-active div { grid-column: 3; }
.mission-item.is-active .mission-status { grid-column: 4; }
.mission-code { color: #45628f; font: 600 10px/1 "Manrope"; }
.mission-item div { min-width: 0; }
.mission-item strong { display: block; color: #e7eefb; font: 500 14px/1.25 "Manrope"; }
.mission-item small { display: block; margin-top: 7px; color: #60789e; font: 600 8px/1 "Manrope"; letter-spacing: .14em; }
.mission-status { padding: 7px 8px; border: 1px solid rgba(80, 132, 224, .22); border-radius: 999px; color: #7da3eb; font: 600 8px/1 "Manrope"; letter-spacing: .1em; }
.mission-item:nth-child(3) .mission-status { color: #53dba4; border-color: rgba(83,219,164,.25); }
.mission-footer { padding: 17px 3px 2px; justify-content: flex-start; }
.mission-footer strong { margin-left: auto; color: #51dca4; font-size: 9px; }
.capacity-bars { display: flex; align-items: end; gap: 3px; height: 12px; }
.capacity-bars i { display: block; width: 3px; background: #3477ee; border-radius: 2px; animation: capacity 1.8s ease-in-out infinite alternate; }
.capacity-bars i:nth-child(1), .capacity-bars i:nth-child(6) { height: 4px; }.capacity-bars i:nth-child(2), .capacity-bars i:nth-child(5) { height: 7px; animation-delay: -.4s; }.capacity-bars i:nth-child(3), .capacity-bars i:nth-child(4) { height: 11px; animation-delay: -.8s; }

.hero-mark { position: relative; width: min(460px, 39vw); aspect-ratio: 1; margin: -55px 0 0 auto; z-index: 1; animation: markIn 1200ms 300ms both; }
.hero-mark svg { width: 100%; height: 100%; overflow: visible; }
.mark-shadow, .mark-stroke, .mark-blue { fill: none; stroke-linecap: square; stroke-linejoin: round; }
.mark-shadow { stroke: rgba(21, 91, 255, 0.12); stroke-width: 118px; filter: url(#softGlow); }
.mark-stroke { stroke: url(#signal); stroke-width: 74px; stroke-dasharray: 1100; stroke-dashoffset: 1100; animation: drawMark 2.2s cubic-bezier(.2,.8,.2,1) 700ms forwards; }
.mark-blue { stroke: var(--blue); stroke-width: 76px; stroke-dasharray: 100; stroke-dashoffset: 100; animation: drawBlue 800ms ease 2.35s forwards; filter: url(#softGlow); }
.orbit { position: absolute; border: 1px solid rgba(68, 132, 255, 0.22); border-radius: 50%; animation: orbit 16s linear infinite; }
.orbit::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--blue); top: 12%; left: 18%; }
.orbit-one { inset: 4%; }
.orbit-two { inset: 20%; animation-duration: 11s; animation-direction: reverse; }

.hero-proof { grid-column: 1 / -1; width: 100%; margin-top: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); position: relative; z-index: 2; }
.hero-proof div { padding: 20px 0; display: flex; align-items: baseline; gap: 13px; }
.hero-proof div + div { border-left: 1px solid var(--line); padding-left: 32px; }
.hero-proof strong { font: 500 29px/1 "Manrope"; color: white; }
.hero-proof span { color: var(--muted); font-size: 13px; }

.signal-strip { width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(4, 15, 35, .72); }
.signal-track { width: max-content; height: 54px; display: flex; align-items: center; gap: 28px; color: #7183a1; font: 600 10px/1 "Manrope"; letter-spacing: .19em; animation: signalTrack 32s linear infinite; }
.signal-track span { white-space: nowrap; }
.signal-track i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px rgba(21, 91, 255, .8); }

.manifesto { padding: 150px 0 110px; }
.manifesto-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 100px; align-items: start; }
.manifesto h2, .engagement-heading h2, .section-heading h2, .process h2, .network h2, .contact h2 { margin: 0; font-size: clamp(42px, 5.3vw, 74px); line-height: 1.06; }
.engagement-heading h2 em, .section-heading h2 em, .contact h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(148, 179, 255, .75); }
.manifesto-layout > div { color: #aebccd; font-size: 18px; }
.manifesto-layout > div p { margin: 0 0 22px; }

.audiences { padding: 30px 0 150px; display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.audiences-intro { position: sticky; top: 130px; }
.audiences-intro h2 { margin: 0; color: #edf3ff; font: 500 clamp(38px, 4.3vw, 60px)/1.08 "Manrope"; letter-spacing: -.055em; }
.audience-list { border-top: 1px solid var(--line); }
.audience-row { min-height: 180px; padding: 28px 0; display: grid; grid-template-columns: 34px 140px minmax(0,1fr) 24px; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); position: relative; }
.audience-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,91,255,.11), transparent 72%); transform: scaleX(0); transform-origin: left; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.audience-row:hover::before { transform: scaleX(1); }
.audience-row > * { position: relative; z-index: 1; }
.audience-row > span { color: #506b95; font: 600 10px/1 "Manrope"; }
.audience-row h3 { margin: 0; color: #f2f6ff; font: 500 23px/1.1 "Manrope"; }
.audience-row p { margin: 0; color: var(--muted); font-size: 15px; }
.audience-row i { color: #7398e6; font-style: normal; font-size: 20px; transition: transform 250ms ease; }
.audience-row:hover i { transform: rotate(45deg); }

.engagements { padding: 80px 0 150px; }
.engagement-heading { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 80px; align-items: end; margin-bottom: 58px; }
.engagement-heading .eyebrow { grid-column: 1 / -1; }
.engagement-heading > p:last-child { max-width: 440px; margin: 0 0 7px; color: var(--muted); font-size: 18px; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 18px; background: rgba(5, 16, 38, .48); overflow: hidden; }
.engagement-card { --spot-x: 50%; --spot-y: 50%; min-height: 420px; padding: 26px; display: flex; flex-direction: column; position: relative; isolation: isolate; overflow: hidden; }
.engagement-card + .engagement-card { border-left: 1px solid var(--line); }
.engagement-card::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: 0; background: radial-gradient(360px circle at var(--spot-x) var(--spot-y), rgba(34, 105, 255, .2), transparent 55%); transition: opacity 350ms ease; }
.engagement-card::after { content: ""; position: absolute; z-index: -1; inset: auto 26px 0; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 450ms cubic-bezier(.2,.8,.2,1); }
.engagement-card:hover::before { opacity: 1; }
.engagement-card:hover::after { transform: scaleX(1); }
.engagement-number { color: #4e6c9d; font: 600 11px/1 "Manrope"; }
.engagement-card > div { margin-top: auto; padding-top: 90px; }
.engagement-card > div p { margin: 0 0 15px; color: #6f96ed; font: 600 10px/1 "Manrope"; letter-spacing: .18em; }
.engagement-card h3 { max-width: 320px; margin: 0; color: #eef4ff; font: 500 25px/1.25 "Manrope"; letter-spacing: -.025em; }
.engagement-card > p { min-height: 68px; margin: 26px 0 30px; color: var(--muted); font-size: 15px; }
.engagement-link { display: flex; justify-content: space-between; align-items: center; color: #b9c9e4; font-size: 13px; }
.engagement-link i { font-style: normal; font-size: 20px; transition: transform 250ms ease; }
.engagement-card:hover .engagement-link i { transform: rotate(45deg); }

.capabilities { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.capability { min-height: 300px; padding: 44px 42px 56px 0; position: relative; border-bottom: 1px solid var(--line); }
.capability:nth-child(even) { border-left: 1px solid var(--line); padding-left: 42px; }
.capability > span { color: #4e6c9d; font: 600 12px/1 "Manrope"; }
.capability h3 { margin: 74px 0 14px; font: 500 27px/1.15 "Manrope"; }
.capability p { max-width: 470px; margin: 0; color: var(--muted); }
.capability-line { position: absolute; height: 1px; width: 0; bottom: -1px; left: 0; background: var(--blue); transition: width 500ms ease; }
.capability:hover .capability-line { width: 100%; }

.execution-statement { min-height: 430px; padding-block: 110px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.execution-statement::before { content: ""; position: absolute; width: 520px; height: 520px; right: -110px; top: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(21, 91, 255, .18), transparent 66%); transform: translateY(-50%); pointer-events: none; }
.execution-statement p { margin: 0 0 24px; color: #7199f5; font: 600 11px/1 "Manrope"; letter-spacing: .22em; }
.execution-statement h2 { max-width: 1000px; margin: 0; color: #edf3ff; font: 500 clamp(54px, 8vw, 110px)/.98 "Manrope"; letter-spacing: -.065em; }
.execution-statement h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(148,179,255,.75); }
.execution-statement > span { width: 0; height: 1px; margin-top: 48px; background: linear-gradient(90deg, var(--blue), rgba(74,163,255,.15), transparent); transition: width 1.4s cubic-bezier(.2,.8,.2,1) .25s; }
.execution-statement.is-visible > span { width: 100%; }

.process { padding: 160px 0; display: grid; grid-template-columns: 0.74fr 1.26fr; gap: 110px; align-items: end; }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; padding-top: 72px; }
.track-line { position: absolute; left: 0; right: 0; top: 28px; height: 1px; background: var(--line); }
.track-line span { display: block; width: 0; height: 100%; background: var(--blue); transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
.process.is-visible .track-line span { width: 100%; }
.process-step { padding-right: 16px; }
.process-step > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid #355a9b; border-radius: 50%; color: #80a3ff; font-size: 12px; position: absolute; top: 9px; background: var(--navy-950); }
.process-step h3 { margin: 0 0 10px; font: 500 20px/1.2 "Manrope"; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.ventures { padding: 120px 0 160px; }
.section-heading { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 100px; align-items: end; margin-bottom: 72px; }
.section-heading > p { color: var(--muted); font-size: 18px; margin: 0; }
.venture-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.venture-card { min-height: 350px; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #061127; overflow: hidden; position: relative; transition: transform 350ms cubic-bezier(.2,.8,.2,1), border-color 350ms ease, box-shadow 350ms ease; }
.venture-card:hover { transform: translateY(-6px); border-color: rgba(79, 135, 255, 0.55); box-shadow: 0 26px 65px rgba(0,0,0,.28); }
.venture-card::after { content: ""; position: absolute; inset: auto -20% -55% 20%; height: 85%; border-radius: 50%; background: var(--card-glow); filter: blur(70px); opacity: 0.45; transition: transform 500ms ease, opacity 500ms ease; }
.venture-card:hover::after { transform: translateY(-9%); opacity: 0.72; }
.venture-top, .venture-bottom { display: flex; justify-content: space-between; gap: 24px; position: relative; z-index: 2; }
.venture-top { color: rgba(231, 238, 252, 0.72); font: 600 11px/1 "Manrope"; letter-spacing: 0.18em; }
.venture-visual { flex: 1; display: grid; place-items: center; position: relative; z-index: 2; }
.venture-logo { width: min(180px, 78%); max-height: 105px; object-fit: contain; transition: transform 450ms cubic-bezier(.2,.8,.2,1), filter 450ms ease; filter: drop-shadow(0 22px 40px rgba(0,0,0,.24)); }
.venture-card:hover .venture-logo { transform: scale(1.055) rotate(-1.5deg); filter: drop-shadow(0 26px 46px rgba(0,0,0,.34)); }
.venture-logo-eatigo { width: min(190px, 84%); }
.venture-logo-eldorado { width: min(200px, 86%); }
.venture-logo-pepites { width: min(180px, 78%); }
.venture-logo-geomail { width: 104px; height: 104px; border-radius: 18px; }
.venture-bottom { align-items: end; }
.venture-bottom h3 { margin: 0 0 4px; font: 500 22px/1.1 "Manrope"; }
.venture-bottom p { margin: 0; color: rgba(230, 236, 247, 0.72); font-size: 14px; line-height: 1.45; }
.venture-bottom > span { font-size: 25px; }
.venture-eatigo { --card-glow: #f35d3d; background: #2b100e; }
.venture-eldorado { --card-glow: #34c98e; background: #071e1c; }
.venture-pepites { --card-glow: #e99b20; background: #271807; }
.venture-geomail { --card-glow: #155bff; background: #06142e; }

.network { min-height: 530px; padding: 100px 0; display: grid; grid-template-columns: 1fr 1.2fr 0.8fr; align-items: center; gap: 55px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.network > p { color: var(--muted); font-size: 18px; }
.network-signal { height: 220px; position: relative; display: grid; place-items: center; }
.network-signal i { position: absolute; border: 1px solid rgba(71, 125, 255, 0.32); border-radius: 50%; animation: signal 3.6s ease-out infinite; }
.network-signal i:nth-child(2) { animation-delay: .65s; }.network-signal i:nth-child(3) { animation-delay: 1.3s;}.network-signal i:nth-child(4) { animation-delay: 1.95s;}.network-signal i:nth-child(5) { animation-delay: 2.6s;}
.network-mark { position: relative; z-index: 2; width: 190px; height: 190px; overflow: visible; filter: drop-shadow(0 22px 38px rgba(10, 58, 166, .28)); animation: networkFloat 5s ease-in-out infinite; }
.network-mark-shadow, .network-mark-stroke, .network-mark-blue { fill: none; stroke-linecap: square; stroke-linejoin: round; }
.network-mark-shadow { stroke: rgba(21, 91, 255, .14); stroke-width: 118px; filter: url(#network-glow); }
.network-mark-stroke { stroke: url(#network-gradient); stroke-width: 74px; stroke-dasharray: 1100; stroke-dashoffset: 1100; }
.network-mark-blue { stroke: var(--blue); stroke-width: 76px; stroke-dasharray: 100; stroke-dashoffset: 100; filter: url(#network-glow); }
.network.is-visible .network-mark-stroke { animation: drawMark 2.2s cubic-bezier(.2,.8,.2,1) .25s forwards; }
.network.is-visible .network-mark-blue { animation: drawBlue .8s ease 1.85s forwards; }

.fatherhood { min-height: 650px; margin-top: 120px; padding: clamp(48px, 7vw, 86px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 130px); align-items: center; position: relative; isolation: isolate; overflow: hidden; border: 1px solid rgba(102, 148, 234, .22); border-radius: 24px; background: linear-gradient(135deg, rgba(10, 34, 76, .92), rgba(3, 13, 31, .96)); box-shadow: 0 40px 110px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04); }
.fatherhood::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .22; background-image: linear-gradient(rgba(151,179,225,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(151,179,225,.14) 1px, transparent 1px); background-size: 66px 66px; mask-image: linear-gradient(115deg, #000, transparent 68%); }
.fatherhood-glow { position: absolute; z-index: -1; width: 460px; height: 460px; left: -150px; bottom: -220px; border-radius: 50%; background: rgba(21,91,255,.34); filter: blur(90px); }
.fatherhood-heading h2 { margin: 0; color: #f4f7ff; font: 500 clamp(48px, 5.5vw, 76px)/.99 "Manrope"; letter-spacing: -.06em; }
.fatherhood-heading h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(133,174,255,.82); }
.fatherhood-content { padding-top: 34px; }
.fatherhood-content > p { margin: 0 0 24px; color: #9eacc0; font-size: 16px; }
.fatherhood-content .fatherhood-lead { color: #e1e9f6; font: 500 clamp(20px, 2vw, 25px)/1.45 "Manrope"; letter-spacing: -.025em; }
.fatherhood-principles { margin-top: 46px; border-top: 1px solid rgba(173,198,238,.16); }
.fatherhood-principles div { min-height: 60px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid rgba(173,198,238,.13); }
.fatherhood-principles span { color: #6583b7; font: 600 9px/1 "Manrope"; }
.fatherhood-principles strong { color: #cad7ea; font: 500 13px/1.2 "Manrope"; letter-spacing: .02em; }
.fatherhood-principles div { opacity: 0; transform: translateX(20px); transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.fatherhood.is-visible .fatherhood-principles div { opacity: 1; transform: none; }
.fatherhood.is-visible .fatherhood-principles div:nth-child(1) { transition-delay: .25s; }
.fatherhood.is-visible .fatherhood-principles div:nth-child(2) { transition-delay: .38s; }
.fatherhood.is-visible .fatherhood-principles div:nth-child(3) { transition-delay: .51s; }

.team { padding: 160px 0; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 48px; }
.person-card { width: 100%; max-width: 380px; }
.person-photo { aspect-ratio: 4 / 4.5; display: block; overflow: hidden; position: relative; background: var(--navy-800); }
.person-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(2, 8, 23, 0.58)); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: grayscale(1) contrast(1.05); transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease; }
.person-photo:hover img { transform: scale(1.035); filter: grayscale(0) contrast(1); }
.person-photo > span { position: absolute; z-index: 2; right: 20px; bottom: 20px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: 13px; backdrop-filter: blur(8px); }
.person-info { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-top: 22px; }
.person-info h3 { margin: 0 0 5px; font: 500 25px/1.2 "Manrope"; }
.person-info p { margin: 0; color: var(--muted); }
.person-info > span { color: #6685b6; font: 600 10px/1.3 "Manrope"; letter-spacing: .16em; text-align: right; }

.contact { padding: 150px 0 120px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow) { max-width: 460px; color: var(--muted); font-size: 18px; margin-top: 30px; }
.contact-locations { display: flex; align-items: center; gap: 18px; margin-top: 40px; color: #789eff; font: 600 11px/1 "Manrope"; letter-spacing: .18em; }
.contact-locations i { width: 44px; height: 1px; background: var(--blue); position: relative; }
.contact-locations i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--blue); }
.contact-form { min-height: 650px; border: 1px solid var(--line); padding: 28px; background: rgba(5, 16, 38, 0.68); border-radius: 4px; }
.contact-form iframe { display: block; background: transparent; }

.site-footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-footer > p:last-child { text-align: right; }
.footer-meta { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.footer-linkedin { width: 34px; height: 34px; display: inline-grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease; }
.footer-linkedin:hover { color: white; border-color: rgba(79, 135, 255, .6); background: var(--blue); transform: translateY(-2px); }
.footer-linkedin svg { width: 17px; height: 17px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes markIn { from { opacity: 0; transform: scale(.91) rotate(-3deg); } to { opacity: 1; transform: none; } }
@keyframes drawMark { to { stroke-dashoffset: 0; } }
@keyframes drawBlue { to { stroke-dashoffset: 0; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes drift { 50% { transform: translate3d(32px, -24px, 0) scale(1.08); } }
@keyframes signal { 0% { width: 8px; height: 8px; opacity: 1; background: var(--blue); } 100% { width: 220px; height: 220px; opacity: 0; } }
@keyframes missionScan { 0%, 25% { transform: translateX(-100%); } 65%, 100% { transform: translateX(100%); } }
@keyframes livePulse { 50% { opacity: .55; box-shadow: 0 0 0 8px rgba(54,220,154,0), 0 0 10px rgba(54,220,154,.35); } }
@keyframes capacity { to { opacity: .38; transform: scaleY(.55); transform-origin: bottom; } }
@keyframes networkFloat { 50% { transform: translateY(-8px) rotate(1.5deg); } }
@keyframes signalTrack { to { transform: translateX(-50%); } }
@keyframes introMark { to { opacity: 1; transform: none; } }
@keyframes introRise { to { opacity: 1; transform: none; } }
@keyframes introLine { to { transform: scaleX(1); } }
@keyframes introTravel { 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; left: calc(100% - 5px); } }
@keyframes introExit { 0% { clip-path: inset(0); opacity: 1; visibility: visible; } 100% { clip-path: inset(0 0 100%); opacity: 1; visibility: hidden; } }

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 680px); }
  .desktop-nav { display: none; }
  .site-header { height: 70px; top: 10px; width: calc(100vw - 20px); padding-inline: 12px; }
  .site-header.is-scrolled { width: calc(100vw - 20px); }
  .lang-switch { padding: 7px 9px; }
  .header-cta { min-height: 42px; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 12px; border: 1px solid rgba(151, 179, 225, .18); border-radius: 20px; background: rgba(2, 9, 24, .97); box-shadow: 0 28px 70px rgba(0,0,0,.48); backdrop-filter: blur(22px); opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.985); transform-origin: top; transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease; }
  .site-header.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu a { display: flex; justify-content: space-between; align-items: center; padding: 16px 14px; border-bottom: 1px solid var(--line); color: #dbe5f4; font: 500 18px/1.2 "Manrope"; }
  .mobile-menu a:last-child { border: 0; margin-top: 8px; border-radius: 12px; background: var(--blue); }
  .mobile-menu a span { color: #6d8ec7; font: 600 10px/1 "Manrope"; letter-spacing: .14em; }
  .mobile-menu a:last-child span { color: white; font-size: 18px; }
  .hero { min-height: 100svh; padding: 128px 0 48px; display: block; }
  .hero-network { opacity: .52; }
  .hero h1 { font-size: clamp(52px, 10.2vw, 72px); line-height: .96; }
  .hero-lead { margin-top: 20px; font-size: 17px; }
  .hero-actions { margin-top: 24px; }
  .mission-control { max-width: 560px; margin: 48px auto 0; }
  .hero-proof { margin-top: 28px; }
  .hero-proof div { padding-block: 17px; }
  .hero-proof div { display: block; }
  .hero-proof div + div { padding-left: 18px; }
  .hero-proof span { display: block; margin-top: 7px; }
  .manifesto, .team, .ventures { padding-block: 100px; }
  .manifesto-layout, .engagement-heading, .section-heading, .process, .network, .contact { grid-template-columns: 1fr; gap: 46px; }
  .audiences { grid-template-columns: 1fr; gap: 48px; padding-block: 20px 110px; }
  .audiences-intro { position: static; }
  .engagement-heading .eyebrow { grid-column: auto; }
  .engagements { padding-block: 80px 110px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 350px; }
  .engagement-card + .engagement-card { border-left: 0; border-top: 1px solid var(--line); }
  .capabilities, .team-grid { grid-template-columns: 1fr; }
  .venture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person-card { max-width: 340px; justify-self: center; }
  .person-card:nth-child(2) { justify-self: center; }
  .capability:nth-child(even) { border-left: 0; padding-left: 0; }
  .process { padding-block: 100px; }
  .execution-statement { min-height: 340px; padding-block: 80px; }
  .process-track { padding-top: 62px; }
  .network { padding-block: 80px; }
  .network-signal { height: 190px; order: 2; }
  .network-mark { width: 160px; height: 160px; }
  .fatherhood { min-height: 0; margin-top: 90px; padding: 52px 42px; grid-template-columns: 1fr; gap: 36px; }
  .fatherhood-content { padding-top: 0; }
  .contact-copy { position: static; }
  .site-footer { grid-template-columns: 1fr; padding-block: 42px; text-align: left; }
  .site-footer > p { margin: 0; }
  .site-footer > p:last-child { text-align: left; }
  .footer-meta { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand span { letter-spacing: .22em; }
  .site-header .brand img { width: 36px; height: 36px; }
  .header-cta { display: none; }
  .lang-switch { gap: 6px; padding: 7px 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .mission-control { margin-top: 36px; padding: 14px; border-radius: 14px; }
  .mission-header > span { display: none; }
  .mission-item { min-height: 70px; grid-template-columns: 22px minmax(0,1fr); }
  .mission-item.is-active { grid-template-columns: 2px 22px minmax(0,1fr); }
  .mission-item.is-active .mission-status { display: none; }
  .mission-status { display: none; }
  .engagement-heading { margin-bottom: 38px; }
  .engagement-card { min-height: 330px; padding: 22px; }
  .engagement-card > div { padding-top: 55px; }
  .engagement-card > p { min-height: 0; }
  .audience-row { grid-template-columns: 26px minmax(0,1fr) 20px; gap: 12px; }
  .audience-row h3 { grid-column: 2; }
  .audience-row p { grid-column: 2; }
  .audience-row i { grid-column: 3; grid-row: 1 / 3; }
  .hero-proof strong { font-size: 26px; }
  .hero-proof span { font-size: 12px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .execution-statement h2 { font-size: clamp(50px, 15vw, 72px); }
  .track-line { display: none; }
  .process-step { padding-top: 50px; position: relative; }
  .venture-grid { grid-template-columns: 1fr; }
  .venture-card { min-height: 360px; }
  .person-info { display: block; }
  .fatherhood { margin-top: 70px; padding: 38px 24px; border-radius: 18px; }
  .fatherhood-heading h2 { font-size: clamp(46px, 14vw, 66px); }
  .person-info > span { display: block; text-align: left; margin-top: 14px; }
  .contact-form { padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .signal-track { animation: none; }
  .brand-intro { display: none; }
  .hero-network { display: none; }
}
