:root {
    --ink: #f5f8ff;
    --muted: #9cabbe;
    --navy-950: #020815;
    --navy-900: #041126;
    --navy-850: #071a34;
    --navy-800: #0a2243;
    --blue: #0aa7ff;
    --blue-2: #315dff;
    --cyan: #19e1df;
    --magenta: #d62e9d;
    --orange: #ff6a1a;
    --gold: #e6b555;
    --red: #d20f19;
    --line: rgba(255,255,255,.14);
    --soft-line: rgba(255,255,255,.08);
    --container: min(1480px, calc(100vw - 80px));
    --ease: cubic-bezier(.16,1,.3,1);
    --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-950); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--navy-950);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--blue); color: #fff; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 150px 0; }

.site-noise {
    position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .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='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
    position: fixed; width: 380px; height: 380px; border-radius: 50%; z-index: 0; pointer-events: none;
    background: radial-gradient(circle, rgba(26,130,255,.12), rgba(26,130,255,0) 70%);
    transform: translate(-50%,-50%); opacity: 0; transition: opacity .3s ease;
}
body:hover .cursor-glow { opacity: 1; }
.scroll-progress { position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 2px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--orange),var(--magenta),var(--blue),var(--cyan)); }

.preloader { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; background: #020817; transition: opacity .7s var(--ease), visibility .7s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner { width: min(360px,70vw); text-align: center; }
.preloader__inner img { width: 92px; margin: 0 auto 30px; }
.preloader__line { height: 1px; background: rgba(255,255,255,.14); overflow: hidden; }
.preloader__line span { display: block; height: 100%; width: 45%; background: linear-gradient(90deg,var(--orange),var(--magenta),var(--blue),var(--cyan)); animation: loading 1.25s var(--ease) infinite; }
.preloader p { margin: 18px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
@keyframes loading { from { transform: translateX(-120%); } to { transform: translateX(330%); } }

.site-header {
    position: fixed; z-index: 1200; left: 0; right: 0; top: 0; height: var(--header-h); padding: 0 40px;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease, transform .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(2,8,21,.86); border-color: var(--soft-line); backdrop-filter: blur(20px); }
.site-header.is-hidden { transform: none; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-weight: 700; letter-spacing: -.03em; font-size: 20px; }
.brand img { width: 40px; max-height: 34px; object-fit: contain; }
.brand > span > span { color: #85a2c8; font-weight: 400; }
.desktop-nav { display: flex; gap: 30px; color: #d9e1ec; font-size: 13px; }
.desktop-nav a { position: relative; padding: 10px 0; display: inline-flex; align-items: center; gap: 8px; }
.nav-icon { width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; color: #85a2c8; opacity: .95; }
.nav-icon svg { width: 14px; height: 14px; display: block; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 28px; padding: 12px 17px 12px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; transition: border-color .3s, background .3s; }
.header-cta i { font-style: normal; font-size: 17px; }
.header-cta:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.menu-toggle { display: none; justify-self: end; width: 48px; height: 48px; background: transparent; border: 1px solid var(--line); border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 18px; height: 1px; background: #fff; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 1100; inset: 0; padding: 140px 30px 50px; background: rgba(2,8,21,.98); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; display: flex; flex-direction: column; justify-content: space-between; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a { border-bottom: 1px solid var(--line); padding: 18px 0; font-size: clamp(30px,9vw,55px); letter-spacing: -.05em; display: flex; align-items: center; gap: 12px; }
.mobile-menu__links span { display: inline-block; width: 42px; font-size: 11px; color: var(--blue); letter-spacing: 0; }
.mobile-nav-icon { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; color: #85a2c8; flex: 0 0 26px; }
.mobile-nav-icon svg { width: 22px; height: 22px; display: block; }
.mobile-menu p { color: var(--muted); }

.hero { position: relative; min-height: 100svh; height: 1000px; max-height: 1100px; overflow: hidden; background: #020817; isolation: isolate; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: .5; }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom,black,transparent 80%); }
.hero-art { position: absolute; z-index: -1; right: -6vw; top: 13%; width: min(920px,62vw); opacity: .48; filter: saturate(.95) contrast(1.1); transform: translate3d(0,var(--parallax-y,0),0); }
.hero-art::after { content:""; position:absolute; inset:0; box-shadow: inset 120px 0 160px #020817, inset 0 -100px 130px #020817; }
.hero-art img { width: 100%; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 72% 45%,rgba(20,89,176,.16),transparent 38%),linear-gradient(90deg,rgba(2,8,23,.98) 0%,rgba(2,8,23,.78) 45%,rgba(2,8,23,.2) 78%),linear-gradient(0deg,#020817 0%,transparent 26%); }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(38,148,255,.14); border-radius: 50%; }
.hero-orbit--one { width: 850px; height: 850px; right: -300px; top: -200px; animation: orbitPulse 8s ease-in-out infinite; }
.hero-orbit--two { width: 520px; height: 520px; right: -80px; top: 100px; animation: orbitPulse 8s 1.5s ease-in-out infinite reverse; }
@keyframes orbitPulse { 50% { transform: scale(1.04); border-color: rgba(17,212,255,.26); } }
.hero-content { position: relative; height: 100%; padding-top: 175px; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 72px; }
.hero-kicker { margin: 0; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #b7c5d8; }
.hero-title { margin: auto 0 0; font-size: clamp(66px,8vw,148px); line-height: .85; letter-spacing: -.075em; font-weight: 600; max-width: 1220px; }
.hero-title__line { display: block; padding-bottom: .08em; }
.hero-title__line > span { display: block; transform: translateY(110%); animation: titleIn 1.2s var(--ease) forwards; }
.hero-title__line:nth-child(2) > span { animation-delay: .12s; }
.hero-title__line:nth-child(3) > span { animation-delay: .24s; }
.hero-title em { font-family: Georgia,serif; font-weight: 400; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.74); }
.clip { overflow: hidden; }
@keyframes titleIn { to { transform: translateY(0); } }
.hero-bottom { margin-top: 54px; display: flex; align-items: end; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-bottom > p { margin: 0; max-width: 600px; color: #b8c6d8; font-size: clamp(17px,1.45vw,22px); }
.circle-link { width: 112px; height: 112px; flex: 0 0 112px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 12px; transition: background .4s, color .4s; }
.circle-link i { font-style: normal; font-size: 20px; }
.circle-link:hover { background: #fff; color: #061127; }
.hero-index { position: absolute; right: 38px; bottom: 35px; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; color: rgba(255,255,255,.38); letter-spacing: .18em; font-size: 10px; }

.marquee { overflow: hidden; border-top: 1px solid var(--soft-line); border-bottom: 1px solid var(--soft-line); background: #061226; }
.marquee__track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 24px 0; animation: marquee 28s linear infinite; }
.marquee__track span { font-size: 18px; letter-spacing: .2em; font-weight: 700; }
.marquee__track b { color: var(--blue); font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-label { display: flex; align-items: center; gap: 14px; color: #a9b8ca; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.section-label span { color: var(--blue); }
.section-label::after { content:""; width: 68px; height: 1px; background: var(--line); }
.manifesto { background: #f3f5f8; color: #061127; }
.manifesto .section-label { color: #526176; }
.manifesto-grid { display: grid; grid-template-columns: 1.45fr .65fr; gap: 10vw; align-items: start; margin-top: 80px; }
.display-copy { margin: 0; font-size: clamp(52px,6.6vw,116px); line-height: .95; letter-spacing: -.065em; font-weight: 500; }
.manifesto-copy { padding-top: 18px; }
.manifesto-copy p { font-size: 18px; color: #4d5c70; margin: 0 0 25px; }
.text-link { display: inline-flex; gap: 24px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-weight: 600; }
.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 110px; border-top: 1px solid rgba(6,17,39,.16); }
.principle { min-height: 320px; padding: 28px 30px; border-right: 1px solid rgba(6,17,39,.16); transition: background .4s var(--ease), transform .3s ease; transform-style: preserve-3d; }
.principle:first-child { border-left: 1px solid rgba(6,17,39,.16); }
.principle > span { color: #6d7b8d; font-size: 11px; }
.principle h3 { font-size: 38px; letter-spacing: -.04em; margin: 85px 0 16px; }
.principle p { margin: 0; color: #596779; max-width: 330px; }
.principle:hover { background: #fff; }

.companies { background: #030b1b; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 72px; }
.section-head h2 { margin: 0; font-size: clamp(62px,7vw,120px); line-height: .89; letter-spacing: -.07em; font-weight: 500; text-align: right; }
.company-stack { display: grid; gap: 28px; }
.company-card { position: sticky; top: 116px; min-height: 660px; padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; overflow: hidden; background: #07162c; box-shadow: 0 -30px 80px rgba(0,0,0,.24); transform-style: preserve-3d; }
.company-card:nth-child(2) { top: 138px; }
.company-card:nth-child(3) { top: 160px; }
.company-card--group { background: radial-gradient(circle at 72% 32%,rgba(218,46,154,.20),transparent 28%),radial-gradient(circle at 62% 56%,rgba(11,167,255,.16),transparent 28%),#09152b; }
.company-card--software { background: radial-gradient(circle at 68% 35%,rgba(210,15,25,.16),transparent 27%),#090d14; }
.company-card--cloud { background: radial-gradient(circle at 68% 34%,rgba(0,168,255,.25),transparent 30%),#06152d; }
.company-card__top { display: flex; justify-content: space-between; text-transform: uppercase; font-size: 10px; letter-spacing: .2em; color: #b3c0d1; }
.company-card__top p { margin: 0; }
.company-card__visual { position: absolute; right: 4%; top: 50%; transform: translateY(-55%); width: 48%; height: 58%; display: grid; place-items: center; }
.company-card__visual img { max-width: 72%; max-height: 72%; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 20px 55px rgba(0,0,0,.35)); }
.company-card--software .company-card__visual img { max-height: 84%; }
.company-card--cloud .company-card__visual::before { content: none; }
.company-card--cloud .company-card__visual img { max-width: 82%; filter: drop-shadow(0 22px 48px rgba(0,80,190,.28)); }
.company-card__glow { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(23,133,255,.28),transparent 70%); filter: blur(15px); animation: glow 5s ease-in-out infinite; }
@keyframes glow { 50% { transform: scale(1.12); opacity: .68; } }
.company-card__content { position: absolute; left: 34px; right: 34px; bottom: 34px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.company-card__content > div { max-width: 47%; }
.company-card__content h3 { font-size: clamp(42px,5vw,88px); line-height: .9; letter-spacing: -.065em; margin: 0 0 24px; }
.company-card__content p { margin: 0; color: #acb9ca; max-width: 560px; font-size: 17px; }
.company-card__content > a { width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; font-size: 24px; transition: background .3s,color .3s; }
.company-card__content > a:hover { background: #fff; color: #051126; }

.signal-section { min-height: 900px; display: flex; align-items: center; overflow: hidden; background: #010713; }
.signal-bg { position: absolute; inset: -10%; transform: translate3d(0,var(--parallax-y,0),0); }
.signal-bg img { width: 100%; height: 100%; object-fit: cover; }
.signal-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(1,7,19,.96),rgba(1,7,19,.25) 72%),linear-gradient(0deg,#010713,transparent 30%,transparent 70%,#010713); }
.signal-content { position: relative; z-index: 1; }
.signal-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; }
.signal-content h2 { font-size: clamp(65px,7.8vw,136px); line-height: .87; letter-spacing: -.07em; font-weight: 500; margin: 42px 0 80px; }
.signal-content h2 em { color: var(--gold); font-family: Georgia,serif; font-weight: 400; }
.signal-facts { display: flex; gap: 70px; }
.signal-facts div { display: flex; align-items: baseline; gap: 14px; border-left: 1px solid rgba(230,181,85,.4); padding-left: 16px; }
.signal-facts strong { font-size: 28px; color: var(--gold); }
.signal-facts span { color: #aeb9c9; }

.ventures { background: #eef1f5; color: #061127; }
.ventures .section-label { color: #526176; }
.ventures .section-head { margin-bottom: 80px; }
.ventures .section-head h2 { text-align: right; }
.venture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.venture-card { position: relative; min-height: 620px; border: 1px solid rgba(5,17,38,.14); border-radius: 26px; padding: 30px; overflow: hidden; display: flex; flex-direction: column; transform-style: preserve-3d; transition: box-shadow .4s ease; }
.venture-card:hover { box-shadow: 0 30px 80px rgba(7,20,40,.12); }
.venture-card__head { display: flex; justify-content: space-between; color: #637084; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }
.venture-card__brand { margin: auto 0 35px; display: flex; align-items: center; gap: 28px; }
.venture-card__brand img { width: 120px; height: 120px; object-fit: contain; }
.venture-card__brand h3 { margin: 0; font-size: clamp(62px,6vw,100px); letter-spacing: -.07em; line-height: .9; }
.venture-card__brand small { display: block; margin-top: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }
.venture-card p { font-size: 18px; color: #536176; max-width: 600px; margin: 0 0 28px; }
.venture-card__tags, .venture-list { display: flex; flex-wrap: wrap; gap: 8px; }
.venture-card__tags span, .venture-list span { border: 1px solid rgba(5,17,38,.18); padding: 8px 13px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

.venture-card__meta { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: auto; }

.venture-card__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.venture-site-link {
    min-height: 34px;
    padding: 0 12px 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: lowercase;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.venture-site-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.venture-site-link:hover { transform: translateY(-2px); }
.venture-site-link--light {
    color: #173d76;
    border: 1px solid rgba(23,61,118,.22);
    background: rgba(255,255,255,.55);
}
.venture-site-link--light:hover {
    color: #0d58d8;
    border-color: rgba(13,88,216,.45);
    background: #fff;
}
.venture-site-link--dark {
    color: rgba(255,255,255,.84);
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.025);
}
.venture-site-link--dark:hover {
    color: #f3c55e;
    border-color: rgba(228,180,80,.42);
    background: rgba(228,180,80,.08);
}
.venture-card__socials { display: inline-flex; align-items: center; gap: 10px; }
.venture-card__socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.02);
    color: rgba(255,255,255,.76);
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.venture-card__socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(228,180,80,.42);
    background: rgba(228,180,80,.08);
    color: #f3c55e;
}
.venture-card__socials svg { width: 15px; height: 15px; }
.venture-card--qofez { background: radial-gradient(circle at 70% 30%,rgba(20,120,255,.20),transparent 34%),#f8faff; }
.venture-card--coluca { background: #061126; color: #fff; }
.venture-card--coluca p { color: #a9b7ca; }
.venture-card--coluca .venture-card__head { color: #a4b0c1; }
.venture-card--coluca .venture-card__tags span { border-color: rgba(255,255,255,.18); }
.venture-card__brand--coluca img { border-radius: 24px; box-shadow: 0 15px 45px rgba(0,0,0,.35); }
.venture-card--labs { grid-column: 1 / -1; min-height: 480px; background: linear-gradient(125deg,#f8f9fb 0%,#dfe7f1 100%); }
.venture-card__monogram { margin-top: 55px; font-size: clamp(94px,12vw,190px); font-weight: 700; line-height: .8; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 1px #173d76; }
.venture-card--labs h3 { margin: auto 0 18px; font-size: clamp(44px,5vw,80px); letter-spacing: -.055em; }

.expertise { background: #050d1e; }
.section-head--split { align-items: end; }
.section-head--split h2 { text-align: left; margin-top: 50px; }
.section-head--split > p { max-width: 470px; color: #9eacbf; font-size: 18px; }
.capability-list { border-top: 1px solid var(--line); }
.capability-row { display: grid; grid-template-columns: 70px 1fr 1fr 40px; gap: 28px; align-items: center; min-height: 142px; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), background .35s ease; }
.capability-row:hover { padding-inline: 22px; background: rgba(255,255,255,.035); }
.capability-row > span { color: var(--blue); font-size: 11px; }
.capability-row h3 { margin: 0; font-size: clamp(28px,3vw,48px); letter-spacing: -.045em; font-weight: 500; }
.capability-row p { margin: 0; color: #98a6b8; max-width: 540px; }
.capability-row i { font-style: normal; font-size: 24px; color: #6e7d90; }


.contact { background: #f2f4f7; color: #061127; }
.contact .section-label { color: #536176; }
.contact-intro { display: grid; grid-template-columns: .55fr 1.5fr .7fr; gap: 35px; align-items: start; }
.contact-intro h2 { margin: 0; font-size: clamp(70px,8.5vw,145px); line-height: .86; letter-spacing: -.075em; font-weight: 500; }
.contact-intro h2 em { font-family: Georgia,serif; font-weight: 400; color: #145bd5; }
.contact-intro > p:last-child { color: #526075; font-size: 18px; margin-top: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; margin-top: 120px; }
.contact-big-link { display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(5,17,38,.18); font-size: clamp(22px,2.4vw,38px); letter-spacing: -.035em; }
.contact-big-link i { font-style: normal; }
.locations { margin-top: 60px; display: grid; gap: 26px; }
.locations div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; }
.locations strong { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.locations span { color: #59677a; }
.contact-form { display: grid; gap: 26px; }
.contact-form label { display: grid; gap: 9px; border-bottom: 1px solid rgba(5,17,38,.22); padding-bottom: 12px; }
.contact-form label > span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: #657286; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; outline: 0; background: transparent; color: #061127; padding: 6px 0; font-size: 20px; resize: vertical; }
.contact-form label:focus-within { border-color: #125fdf; }
.form-hp { position: absolute; left: -9999px; }
.form-status { padding: 15px 18px; border-radius: 12px; font-size: 14px; }
.form-status.is-success { background: #dff6e8; color: #0b5d31; }
.form-status.is-warning { background: #fff0ce; color: #704d00; }
.form-status.is-error { background: #ffe4e5; color: #8a1018; }
.submit-button { width: 100%; border: 0; border-radius: 999px; background: #061127; color: #fff; min-height: 64px; padding: 0 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background .3s ease; }
.submit-button:hover { background: #125fdf; }
.submit-button i { font-style: normal; font-size: 22px; }
.contact-form small { color: #798599; line-height: 1.5; }

.site-footer { background: #020817; padding: 70px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-bottom: 65px; }
.footer-brand { display: inline-flex; align-items: center; gap: 15px; font-size: 23px; font-weight: 700; width: max-content; }
.footer-brand img { width: 50px; }
.footer-company { display: flex; gap: 22px; color: #8796aa; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.back-top { justify-self: end; font-size: 12px; color: #a7b4c6; }
.footer-bottom { border-top: 1px solid var(--soft-line); padding-top: 24px; display: flex; justify-content: space-between; color: #718095; font-size: 11px; }
.footer-bottom p { margin: 0; max-width: 850px; }
.footer-bottom div { display: flex; gap: 24px; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

.legal-page { background: #f2f4f7; color: #061127; }
.legal-page .site-header { background: #051126; }
.legal-main { padding: 180px 0 100px; max-width: 940px; }
.legal-main h1 { font-size: clamp(64px,9vw,120px); letter-spacing: -.07em; line-height: .9; margin: 45px 0 50px; }
.legal-lead { font-size: 25px; color: #44546a; }
.legal-main section { border-top: 1px solid rgba(5,17,38,.16); padding: 30px 0; }
.legal-main h2 { font-size: 26px; margin: 0 0 12px; }
.legal-main p { color: #526075; }
.legal-main a { color: #125fdf; }

@media (max-width: 1100px) {
    :root { --container: min(100% - 44px, 1000px); }
    .site-header { padding: 0 22px; grid-template-columns: 1fr auto; }
    .desktop-nav, .site-header .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .hero { height: 900px; }
    .hero-art { width: 85vw; right: -24vw; top: 23%; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 50px; }
    .manifesto-copy { max-width: 650px; }
    .company-card { min-height: 600px; }
    .company-card__content > div { max-width: 58%; }
    .contact-intro { grid-template-columns: 1fr; }
    .contact-intro .section-label { margin-bottom: 30px; }
    .contact-intro > p:last-child { max-width: 600px; }
}

@media (max-width: 760px) {

    .venture-card__actions { justify-content: flex-start; }
    .venture-site-link { min-height: 32px; padding-inline: 12px 10px; }

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    :root { --container: calc(100% - 28px); --header-h: 74px; }
    .section { padding: 95px 0; }
    .site-header { height: var(--header-h); padding: 0 14px; }
    .brand { font-size: 17px; }
    .brand img { width: 34px; }
    .hero { min-height: 820px; height: 100svh; max-height: none; }
    .hero-content { padding-top: 125px; padding-bottom: 42px; }
    .hero-title { font-size: clamp(53px,16vw,84px); line-height: .88; }
    .hero-art { width: 140vw; right: -72vw; top: 25%; opacity: .36; }
    .hero-bottom { align-items: center; }
    .hero-bottom > p { font-size: 15px; }
    .circle-link { width: 74px; height: 74px; flex-basis: 74px; font-size: 9px; }
    .hero-index { display: none; }
    .marquee__track { padding: 17px 0; }
    .marquee__track span { font-size: 13px; }
    .manifesto-grid { margin-top: 50px; }
    .display-copy { font-size: clamp(48px,14vw,70px); }
    .principles-grid { grid-template-columns: 1fr; margin-top: 70px; }
    .principle { min-height: 240px; border-left: 1px solid rgba(6,17,39,.16); border-bottom: 1px solid rgba(6,17,39,.16); }
    .principle h3 { margin-top: 50px; }
    .section-head { display: block; margin-bottom: 45px; }
    .section-head h2, .ventures .section-head h2 { text-align: left; margin-top: 35px; font-size: clamp(52px,15vw,78px); }
    .company-card { position: relative; top: auto!important; min-height: 720px; padding: 22px; border-radius: 20px; }
    .company-card__top { display: block; }
    .company-card__top p { margin-top: 10px; }
    .company-card__visual { top: 100px; right: 0; width: 100%; height: 310px; transform: none; }
    .company-card__content { left: 22px; right: 22px; bottom: 24px; display: block; }
    .company-card__content > div { max-width: none; }
    .company-card__content h3 { font-size: 48px; }
    .company-card__content p { font-size: 15px; }
    .company-card__content > a { margin-top: 25px; width: 56px; height: 56px; }
    .signal-section { min-height: 720px; }
    .signal-content h2 { font-size: 56px; }
    .signal-facts { gap: 28px; flex-wrap: wrap; }
    .venture-grid { grid-template-columns: 1fr; }
    .venture-card { min-height: 560px; padding: 22px; }
    .venture-card__brand { display: block; }
    .venture-card__brand img { width: 100px; height: 100px; margin-bottom: 22px; }
    .venture-card__brand h3 { font-size: 65px; }
    .venture-card--labs { grid-column: auto; }
    .capability-row { grid-template-columns: 38px 1fr 20px; padding: 24px 0; min-height: 0; }
    .capability-row p { grid-column: 2 / 4; }
    .capability-row h3 { font-size: 30px; }
    .contact-intro h2 { font-size: 64px; }
    .contact-grid { grid-template-columns: 1fr; gap: 75px; margin-top: 75px; }
    .locations div { grid-template-columns: 1fr; gap: 5px; }
    .footer-top { grid-template-columns: 1fr auto; gap: 40px; }
    .footer-company { grid-row: 2; grid-column: 1 / -1; margin-top: 35px; flex-wrap: wrap; }
    .footer-bottom { display: block; }
    .footer-bottom div { margin-top: 15px; flex-wrap: wrap; }
    .cursor-glow { display: none; }
}

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

/* ===== Version 1.1 compact / bilingual refinements ===== */
:root {
    --container: min(1320px, calc(100vw - 72px));
    --header-h: 82px;
}

.section { padding: 110px 0; }
.site-noise { opacity: .02; }
.cursor-glow { width: 320px; height: 320px; }

.site-header {
    padding: 0 28px;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
}
.site-header.is-scrolled { background: rgba(2,8,21,.78); backdrop-filter: blur(18px); }
.brand {
    gap: 10px;
    font-size: 18px;
    padding: 10px 12px 10px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 32px rgba(0,0,0,.16);
}
.brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    box-shadow: none;
    flex: 0 0 42px;
}
.brand__mark img { width: 28px; max-height: 24px; }
.brand__copy { display: inline-flex; align-items: baseline; gap: 0; letter-spacing: -.035em; }
.brand__copy strong { color: #fff; font-weight: 700; }
.brand__copy span { color: #8ea5c5; font-weight: 500; }
.desktop-nav { gap: 26px; font-size: 12px; }
.header-actions { justify-self: end; display: inline-flex; align-items: center; gap: 12px; }
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
}
.lang-switch a {
    min-width: 56px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #b8c7d8;
    transition: background .25s ease, color .25s ease;
}
.lang-switch a img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18);
    flex: 0 0 auto;
}
.lang-switch a span { line-height: 1; }
.lang-switch a.is-active {
    background: #fff;
    color: #07172f;
}
.header-cta { gap: 18px; padding: 11px 15px 11px 18px; font-size: 12px; }
.header-cta i { font-size: 15px; }
.mobile-menu__langs { margin-bottom: 30px; width: max-content; }

.hero {
    min-height: 820px;
    height: 860px;
    max-height: 900px;
}
.hero-grid { background-size: 72px 72px; opacity: .12; }
.hero-content { padding-top: 145px; padding-bottom: 48px; }
.hero-kicker { font-size: 10px; letter-spacing: .22em; }
.hero-title {
    font-size: clamp(58px, 7vw, 112px);
    max-width: 980px;
    line-height: .86;
}
.hero-bottom { margin-top: 38px; padding-top: 18px; gap: 24px; }
.hero-bottom > p { max-width: 560px; font-size: clamp(15px, 1.15vw, 19px); }
.circle-link { width: 92px; height: 92px; flex-basis: 92px; gap: 6px; font-size: 10px; }
.circle-link i { font-size: 18px; }
.hero-index { font-size: 11px; letter-spacing: .18em; }
.hero-art {
    right: 1vw;
    top: 14%;
    width: min(650px, 45vw);
    opacity: .58;
    filter: saturate(1.02) contrast(1.04) drop-shadow(0 24px 64px rgba(0,0,0,.35));
}
.hero-art::after {
    box-shadow: inset 110px 0 140px #020817, inset 0 -60px 100px #020817;
}
.hero-shade {
    background: radial-gradient(circle at 74% 40%, rgba(42,126,240,.18), transparent 34%),
        linear-gradient(90deg, rgba(2,8,23,1) 0%, rgba(2,8,23,.88) 40%, rgba(2,8,23,.36) 72%),
        linear-gradient(0deg, #020817 0%, transparent 22%);
}
.hero-orbit--one { width: 680px; height: 680px; right: -220px; top: -160px; }
.hero-orbit--two { width: 420px; height: 420px; right: 40px; top: 90px; }

.marquee__track { padding: 16px 0; }
.marquee__track span { font-size: 12px; }

.section-head { margin-bottom: 54px; }
.display-copy { font-size: clamp(46px, 6vw, 84px); }
.manifesto-grid { gap: 44px; }
.manifesto-copy p, .section-head--split > p { font-size: 17px; }
.principles-grid { margin-top: 56px; }
.principle { min-height: 250px; padding: 22px; }
.principle h3 { font-size: 25px; margin-top: 42px; }

.company-stack { gap: 18px; }
.company-card { min-height: 500px; padding: 26px; border-radius: 24px; }
.company-card__visual { width: min(42%, 380px); height: 58%; right: 16px; }
.company-card__content { left: 26px; right: 26px; bottom: 24px; gap: 28px; }
.company-card__content > div { max-width: 54%; }
.company-card__content h3 { font-size: clamp(32px, 4vw, 64px); margin-bottom: 16px; }
.company-card__content p { font-size: 15px; max-width: 500px; }
.company-card__content > a { width: 58px; height: 58px; font-size: 20px; }

.signal-section { min-height: 700px; }
.signal-content h2 { font-size: clamp(52px, 6.4vw, 92px); margin: 28px 0 50px; }
.signal-facts { gap: 36px; }
.signal-facts strong { font-size: 24px; }
.signal-facts span { font-size: 15px; }

.ventures .section-head { margin-bottom: 58px; }
.venture-grid { gap: 18px; }
.venture-card { min-height: 480px; padding: 24px; border-radius: 22px; }
.venture-card__brand { gap: 20px; margin-bottom: 24px; }
.venture-card__brand img { width: 92px; height: 92px; }
.venture-card__brand h3 { font-size: clamp(44px, 5vw, 72px); }
.venture-card p { font-size: 16px; }

.capability-row { min-height: 112px; gap: 18px; grid-template-columns: 52px 1fr 1fr 28px; }
.capability-row h3 { font-size: clamp(24px, 2.4vw, 36px); }
.capability-row p { font-size: 15px; }


.contact-intro h2 { font-size: clamp(56px, 6.6vw, 92px); }
.contact-intro > p:last-child { font-size: 16px; }
.contact-grid { gap: 6vw; margin-top: 68px; }
.contact-big-link { padding: 18px 0; font-size: clamp(20px, 2vw, 30px); }
.locations { margin-top: 36px; gap: 18px; }
.contact-form { gap: 20px; }
.contact-form input, .contact-form textarea { font-size: 18px; }
.submit-button { min-height: 58px; }

.footer-top { padding: 26px 0; }
.footer-bottom { padding: 20px 0 34px; }
.legal-header { grid-template-columns: 1fr auto; }

@media (max-width: 1100px) {
    :root { --container: min(100% - 42px, 980px); }
    .site-header { grid-template-columns: 1fr auto; }
    .header-actions { display: none; }
    .hero { height: 760px; min-height: 760px; }
    .hero-art { width: min(540px, 52vw); right: -8vw; top: 18%; }
    .company-card { min-height: 460px; }
    .company-card__visual { width: 35%; height: 52%; }
    .company-card__content > div { max-width: 60%; }
}

@media (max-width: 760px) {

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    :root { --container: calc(100% - 26px); --header-h: 74px; }
    .section { padding: 86px 0; }
    .site-header { padding: 0 12px; }
    .brand { padding: 7px 10px 7px 7px; font-size: 16px; }
    .brand__mark { width: 34px; height: 34px; border-radius: 0; }
    .brand__mark img { width: 22px; max-height: 18px; }
    .hero { min-height: 720px; height: 100svh; }
    .hero-content { padding-top: 118px; padding-bottom: 34px; }
    .hero-title { font-size: clamp(44px, 13vw, 74px); max-width: 92%; }
    .hero-art { width: 90vw; right: -34vw; top: 22%; opacity: .34; }
    .hero-bottom { align-items: flex-start; }
    .hero-bottom > p { font-size: 14px; }
    .circle-link { width: 72px; height: 72px; flex-basis: 72px; font-size: 8px; }
    .display-copy { font-size: clamp(42px, 13vw, 62px); }
    .company-card { min-height: 620px; padding: 18px; }
    .company-card__content { left: 18px; right: 18px; bottom: 18px; }
    .company-card__content h3 { font-size: 38px; }
    .company-card__visual { top: 88px; height: 270px; width: 100%; right: 0; }
    .company-card__content > div { max-width: 100%; }
    .signal-section { min-height: 580px; }
    .signal-content h2 { font-size: 46px; margin-bottom: 34px; }
    .venture-card { min-height: 420px; }
    .venture-card__brand h3 { font-size: 42px; }
    .capability-row { min-height: auto; padding: 18px 0; grid-template-columns: 40px 1fr; }
    .capability-row p { grid-column: 1 / -2; margin-left: 40px; }
    .capability-row i { display: none; }
    .contact-intro h2 { font-size: 48px; }
    .contact-grid { margin-top: 44px; }
    .contact-form input, .contact-form textarea { font-size: 16px; }
    .footer-brand span { font-size: 20px; }
}

/* Footer logo: fully transparent asset and container */
.footer-brand,
.footer-brand img {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
.footer-brand img {
    object-fit: contain;
}


/* Contact details refinement */
.contact-big-link {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #385b87;
}
.contact-big-link i {
    font-size: 14px;
    font-weight: 400;
    color: #385b87;
}

.contact-big-link__main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.contact-inline-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5c78a1;
    border: 1px solid rgba(56,91,135,.18);
    border-radius: 999px;
    background: rgba(56,91,135,.04);
}
.contact-inline-icon svg {
    width: 12px;
    height: 12px;
    display: block;
}
.contact-inline-icon--sm {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    border: 0;
    background: transparent;
    color: #60728b;
}
.contact-inline-icon--sm svg {
    width: 12px;
    height: 12px;
}
.location-line {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}
.company-payment-details {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(5,17,38,.14);
}
.company-payment-details > p {
    margin: 0 0 18px;
    color: #0c2445;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.company-payment-details dl {
    margin: 0;
    display: grid;
    gap: 12px;
}
.company-payment-details dl > div {
    display: grid;
    grid-template-columns: 175px minmax(0,1fr);
    gap: 18px;
    align-items: baseline;
}
.company-payment-details dt {
    color: #60728b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.company-payment-details dd {
    margin: 0;
    color: #385b87;
    font-size: 14px;
    overflow-wrap: anywhere;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    .contact-big-link { font-size: 14px; }
    .company-payment-details dl > div { grid-template-columns: 1fr; gap: 3px; }
}

.company-card--group .company-card__visual,
.company-card--group .company-card__visual img {
    background: transparent !important;
}
.company-card--group .company-card__visual img {
    max-width: 76%;
    filter: drop-shadow(0 22px 56px rgba(0,0,0,.34));
}

/* Force fully transparent header/footer logo surfaces. */
.brand__mark,
.brand__mark::before,
.brand__mark::after,
.brand__mark img {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
.brand__mark img {
    display: block;
    object-fit: contain;
}

/* ===== Hero refinement: compact layout with transparent ELITAD mark ===== */
.hero {
    min-height: 650px;
    height: 680px;
    max-height: 720px;
}
.hero-content {
    padding-top: 122px;
    padding-bottom: 38px;
}
.hero-title {
    max-width: 910px;
    font-size: clamp(54px, 6.1vw, 96px);
    line-height: .88;
}
.hero-bottom {
    margin-top: 28px;
    padding-top: 16px;
}
.hero-bottom > p {
    max-width: 560px;
    font-size: clamp(14px, 1.05vw, 17px);
}
.hero-logo {
    right: 8vw;
    top: 50%;
    width: min(330px, 24vw);
    opacity: .78;
    transform: translate3d(0, calc(-50% + var(--parallax-y, 0px)), 0);
    filter: drop-shadow(0 26px 70px rgba(16, 98, 212, .30));
}
.hero-logo::after {
    content: none;
    box-shadow: none;
}
.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent !important;
}
.hero-shade {
    background:
        radial-gradient(circle at 78% 46%, rgba(42,126,240,.13), transparent 26%),
        linear-gradient(90deg, rgba(2,8,23,1) 0%, rgba(2,8,23,.92) 48%, rgba(2,8,23,.56) 76%),
        linear-gradient(0deg, #020817 0%, transparent 18%);
}
.hero-orbit--one { width: 560px; height: 560px; right: -190px; top: -145px; }
.hero-orbit--two { width: 340px; height: 340px; right: 72px; top: 106px; }
.circle-link { width: 82px; height: 82px; flex-basis: 82px; font-size: 9px; }

@media (max-width: 1100px) {
    .hero { min-height: 640px; height: 660px; }
    .hero-title { max-width: 760px; font-size: clamp(50px, 7vw, 82px); }
    .hero-logo { width: min(250px, 28vw); right: 3vw; opacity: .58; }
}

@media (max-width: 760px) {

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    .hero { min-height: 610px; height: 670px; max-height: none; }
    .hero-content { padding-top: 106px; padding-bottom: 28px; }
    .hero-title { max-width: 96%; font-size: clamp(42px, 12.4vw, 65px); }
    .hero-logo {
        width: 185px;
        right: -42px;
        top: 31%;
        opacity: .28;
        transform: translate3d(0, var(--parallax-y, 0px), 0);
    }
    .hero-bottom { margin-top: 22px; padding-top: 14px; }
    .hero-bottom > p { max-width: calc(100% - 70px); font-size: 13px; }
    .circle-link { width: 62px; height: 62px; flex-basis: 62px; }
}


/* Floating contact channels */
.social-float {
    position: fixed;
    z-index: 1250;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.social-float__button {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(5,17,38,.88);
    box-shadow: 0 16px 40px rgba(0,0,0,.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-float__button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}
.social-float__button--instagram svg {
    width: 26px;
    height: 26px;
}
.social-float__button--facebook svg,
.social-float__button--linkedin svg,
.social-float__button--whatsapp svg,
.social-float__button--x svg {
    width: 23px;
    height: 23px;
}
.social-float__button--whatsapp { color: #fff; background: #25D366; }
.social-float__button--linkedin { color: #fff; background: #0A66C2; }
.social-float__button--facebook { color: #fff; background: #1877F2; }
.social-float__button--instagram {
    color: #fff;
    background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 34%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}
.social-float__button--x { color: #fff; background: #0b0b0b; }
.social-float__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 44px rgba(0,0,0,.36);
    border-color: rgba(255,255,255,.26);
}
.social-float__button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
@media (max-width: 760px) {

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    .social-float { right: 14px; bottom: 14px; }
    .social-float__button { width: 46px; height: 46px; }
    .social-float__button svg { width: 22px; height: 22px; }
    .social-float__button--instagram svg { width: 24px; height: 24px; }
}


/* ===== Precisely centre the hero logo inside the inner orbit ===== */
.hero {
    --hero-logo-orbit-size: 340px;
    --hero-logo-orbit-right: 72px;
    --hero-logo-orbit-top: 106px;
    --hero-logo-size: min(330px, 24vw);
}
.hero-orbit--two {
    width: var(--hero-logo-orbit-size);
    height: var(--hero-logo-orbit-size);
    right: var(--hero-logo-orbit-right);
    top: var(--hero-logo-orbit-top);
}
.hero-logo {
    width: var(--hero-logo-size);
    right: calc(
        var(--hero-logo-orbit-right) +
        (var(--hero-logo-orbit-size) - var(--hero-logo-size)) / 2
    );
    top: calc(var(--hero-logo-orbit-top) + var(--hero-logo-orbit-size) / 2);
    transform: translate3d(0, -50%, 0);
}

@media (max-width: 1100px) {
    .hero { --hero-logo-size: min(250px, 28vw); }
    .hero-logo {
        right: calc(
            var(--hero-logo-orbit-right) +
            (var(--hero-logo-orbit-size) - var(--hero-logo-size)) / 2
        );
        top: calc(var(--hero-logo-orbit-top) + var(--hero-logo-orbit-size) / 2);
        transform: translate3d(0, -50%, 0);
    }
}

@media (max-width: 760px) {

    .venture-card__meta { align-items: flex-start; }

    .contact-big-link__main { gap: 10px; }
    .contact-inline-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .contact-inline-icon svg { width: 11px; height: 11px; }
    .location-line { gap: 8px; }

    .venture-card__socials a { width: 32px; height: 32px; }
    .hero {
        --hero-logo-orbit-size: 250px;
        --hero-logo-orbit-right: -62px;
        --hero-logo-orbit-top: 108px;
        --hero-logo-size: 150px;
    }
    .hero-orbit--two {
        width: var(--hero-logo-orbit-size);
        height: var(--hero-logo-orbit-size);
        right: var(--hero-logo-orbit-right);
        top: var(--hero-logo-orbit-top);
    }
    .hero-logo {
        width: var(--hero-logo-size);
        right: calc(
            var(--hero-logo-orbit-right) +
            (var(--hero-logo-orbit-size) - var(--hero-logo-size)) / 2
        );
        top: calc(var(--hero-logo-orbit-top) + var(--hero-logo-orbit-size) / 2);
        transform: translate3d(0, -50%, 0);
        opacity: .34;
    }
}

/* ===== SEO release 1.2: refined footer visitor counter ===== */
.footer-visitor-wrap {
    display: flex;
    justify-content: center;
    padding-top: 28px;
}
.footer-visitor {
    position: relative;
    display: inline-grid;
    grid-template-columns: 38px 8px minmax(150px, auto) auto;
    align-items: center;
    gap: 12px;
    min-width: 360px;
    padding: 13px 16px 13px 13px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(4,15,34,.74);
    box-shadow: 0 18px 50px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(16px);
    color: #eef5ff;
    overflow: hidden;
}
.footer-visitor::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(100deg, transparent 15%, rgba(35,151,255,.075) 52%, transparent 82%);
}
.footer-visitor__icon {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #7ec8ff;
    background: rgba(20,111,220,.12);
    border: 1px solid rgba(81,177,255,.20);
}
.footer-visitor__icon svg { width: 18px; height: 18px; }
.footer-visitor__pulse {
    position: relative;
    z-index: 1;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52,211,153,.42);
    animation: visitorPulse 2.2s infinite;
}
.footer-visitor__copy {
    position: relative;
    z-index: 1;
    display: grid;
    line-height: 1.15;
}
.footer-visitor__copy > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #dce9f8;
}
.footer-visitor__copy small {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: .05em;
    color: #71859f;
}
.footer-visitor strong {
    position: relative;
    z-index: 1;
    min-width: 70px;
    text-align: right;
    font-size: 27px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.045em;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}
@keyframes visitorPulse {
    0% { box-shadow: 0 0 0 0 rgba(52,211,153,.42); }
    70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

@media (max-width: 760px) {
    .footer-visitor-wrap { padding-top: 22px; }
    .footer-visitor {
        width: 100%;
        min-width: 0;
        grid-template-columns: 34px 7px minmax(0,1fr) auto;
        gap: 9px;
        padding: 11px 13px 11px 11px;
    }
    .footer-visitor__icon { width: 34px; height: 34px; }
    .footer-visitor__copy small { font-size: 8px; }
    .footer-visitor strong { min-width: 52px; font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
    .footer-visitor__pulse { animation: none; }
}


/* Contact section alignment cleanup */
.contact-details {
    font-family: inherit;
    --contact-label-color: #0c2445;
    --contact-value-color: #385b87;
    --contact-muted-icon: #60728b;
}
.contact-big-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(5,17,38,.16);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--contact-value-color);
}
.contact-big-link__main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.contact-big-link__main > span:last-child {
    color: var(--contact-value-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.contact-big-link i {
    justify-self: end;
    color: var(--contact-value-color);
    font-size: 13px;
    line-height: 1;
}
.contact-inline-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid rgba(56,91,135,.18);
    background: rgba(56,91,135,.04);
    color: var(--contact-muted-icon);
}
.contact-inline-icon svg {
    width: 11px;
    height: 11px;
}
.locations {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}
.locations > div,
.company-payment-details dl > div {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}
.locations strong,
.company-payment-details > p,
.company-payment-details dt {
    color: var(--contact-label-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.45;
}
.location-line {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}
.location-line > span:last-child,
.company-payment-details dd {
    color: var(--contact-value-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    overflow-wrap: anywhere;
    font-variant-numeric: tabular-nums;
}
.contact-inline-icon--sm {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    border: 0;
    background: transparent;
    color: var(--contact-muted-icon);
    margin-top: 2px;
}
.contact-inline-icon--sm svg {
    width: 12px;
    height: 12px;
}
.company-payment-details {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(5,17,38,.14);
}
.company-payment-details > p {
    margin: 0 0 18px;
}
.company-payment-details dl {
    margin: 0;
    display: grid;
    gap: 14px;
}
@media (max-width: 760px) {
    .contact-big-link {
        grid-template-columns: minmax(0,1fr) 16px;
        gap: 12px;
    }
    .locations > div,
    .company-payment-details dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .contact-big-link__main {
        gap: 10px;
    }
    .location-line {
        grid-template-columns: 14px minmax(0,1fr);
        gap: 8px;
    }
}

/* ===== Contact information: unified typography, colour and alignment ===== */
.contact-details {
    --contact-text: #315f94;
    --contact-rule: rgba(49,95,148,.20);
    --contact-label-width: 176px;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    color: var(--contact-text);
}
.contact-big-link {
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--contact-rule);
    color: var(--contact-text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}
.contact-big-link__main {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}
.contact-big-link i {
    color: var(--contact-text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.contact-inline-icon,
.contact-inline-icon--sm {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--contact-rule);
    border-radius: 999px;
    background: rgba(49,95,148,.035);
    color: var(--contact-text);
}
.contact-inline-icon svg,
.contact-inline-icon--sm svg {
    width: 12px;
    height: 12px;
    display: block;
}
.locations {
    margin-top: 30px;
    display: grid;
    gap: 16px;
}
.locations > div {
    display: grid;
    grid-template-columns: var(--contact-label-width) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}
.locations strong,
.location-line,
.location-line > span:last-child,
.company-payment-details > p,
.company-payment-details dt,
.company-payment-details dd {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;
}
.locations strong,
.company-payment-details > p,
.company-payment-details dt {
    color: var(--contact-text);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.location-line {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    color: var(--contact-text);
}
.location-line > span:last-child {
    color: var(--contact-text);
    font-weight: 400;
}
.company-payment-details {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--contact-rule);
}
.company-payment-details > p {
    margin: 0 0 18px;
}
.company-payment-details dl {
    margin: 0;
    display: grid;
    gap: 14px;
}
.company-payment-details dl > div {
    display: grid;
    grid-template-columns: var(--contact-label-width) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}
.company-payment-details dt,
.company-payment-details dd {
    margin: 0;
    color: var(--contact-text);
}
.company-payment-details dd {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: anywhere;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
    .contact-details { --contact-label-width: 1fr; }
    .locations > div,
    .company-payment-details dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .contact-big-link__main,
    .location-line {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 10px;
    }
    .contact-inline-icon,
    .contact-inline-icon--sm {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }
}
