:root {
  --ink: #061425;
  --ink-2: #0a1e34;
  --ink-3: #102c49;
  --blue: #0d6fba;
  --blue-2: #168bd2;
  --cyan: #48bdf1;
  --ice: #d9effb;
  --silver: #aebdca;
  --mist: #eef3f7;
  --paper: #f8fafc;
  --white: #ffffff;
  --black: #02070d;
  --line: rgba(12, 54, 88, 0.16);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 90px rgba(4, 17, 30, 0.16);
  --shadow-dark: 0 36px 110px rgba(0, 0, 0, 0.38);
  --container: min(1280px, calc(100vw - 96px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.opening-active { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--cyan); color: var(--ink); }

.svg-sprite { width: 0; height: 0; position: absolute; overflow: hidden; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin-inline: auto; }
.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.skip-link {
  position: fixed; z-index: 10000; left: 16px; top: 16px; transform: translateY(-140%);
  background: white; color: var(--ink); padding: 12px 16px; border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

/* Opening */
.opening {
  position: fixed; inset: 0; z-index: 9999; background: #020a12;
  transition: opacity 1s var(--ease), visibility 1s;
}
.opening.is-closing { opacity: 0; visibility: hidden; pointer-events: none; }
.opening__video { width: 100%; height: 100%; object-fit: cover; }
.opening__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 13, 24, .08), rgba(3, 13, 24, .4)),
              radial-gradient(circle at center, transparent 20%, rgba(1, 8, 15, .25) 100%);
}
.opening__hud {
  position: absolute; left: 34px; right: 34px; top: 26px; display: flex; justify-content: space-between;
  color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
}
.opening__progress { position: absolute; left: 34px; right: 34px; bottom: 28px; height: 1px; background: rgba(255,255,255,.23); }
.opening__progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue-2), var(--cyan)); box-shadow: 0 0 18px var(--cyan); }
.opening__skip {
  position: absolute; right: 34px; bottom: 54px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px;
  color: white; background: rgba(4, 18, 31, .38); backdrop-filter: blur(14px); padding: 13px 18px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}
.opening__skip:hover { background: rgba(20, 117, 185, .7); border-color: var(--cyan); transform: translateY(-2px); }
.opening__skip span { margin-left: 8px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 94px;
  border-bottom: 1px solid transparent; transition: background .45s, border-color .45s, height .45s, box-shadow .45s;
}
.site-header.is-scrolled {
  height: 76px; background: rgba(5, 18, 32, .88); backdrop-filter: blur(18px) saturate(130%);
  border-color: rgba(255,255,255,.1); box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.header-shell { width: min(1440px, calc(100vw - 56px)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; color: white; min-width: 250px; }
.brand__mark {
  width: 54px; height: 54px; border-radius: 50%; overflow: hidden; background: white; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45); box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; transform: scale(1.16); }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy strong { font-size: 20px; letter-spacing: .17em; }
.brand__copy small { margin-top: 7px; font-size: 8.5px; letter-spacing: .19em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.main-nav a { position: relative; color: rgba(255,255,255,.76); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 12px 0; transition: color .3s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--cyan); transition: right .35s var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: white; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.opening-replay { border: 0; color: rgba(255,255,255,.78); background: transparent; display: flex; align-items: center; gap: 8px; padding: 10px; cursor: pointer; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.opening-replay svg { width: 17px; height: 17px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; padding: 0; place-items: center; cursor: pointer; }
.menu-toggle span { position: absolute; width: 17px; height: 1px; background: white; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { transform: translateY(-3px); }
.menu-toggle span:last-child { transform: translateY(3px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s; }
.button svg { width: 20px; height: 20px; transition: transform .3s; }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(4px); }
.button--primary { background: linear-gradient(115deg, #0c6cb4, #25a7df); color: white; box-shadow: 0 16px 38px rgba(16, 122, 190, .26), inset 0 1px 0 rgba(255,255,255,.28); }
.button--primary:hover { box-shadow: 0 22px 54px rgba(16, 122, 190, .4), inset 0 1px 0 rgba(255,255,255,.3); }
.button--ghost { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.035); backdrop-filter: blur(9px); }
.button--ghost:hover { background: white; color: var(--ink); border-color: white; }
.button--compact { min-height: 44px; padding-inline: 18px; color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.button--compact:hover { background: white; color: var(--ink); }

/* Hero */
.hero { position: relative; min-height: 100svh; color: white; background: var(--ink); overflow: hidden; }
.hero__media, .hero__media img, .hero__wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 42%; transform: scale(1.035); animation: hero-drift 14s ease-out both; }
@keyframes hero-drift { from { transform: scale(1.11) translate3d(1.5%,0,0); } to { transform: scale(1.035) translate3d(0,0,0); } }
.hero__wash { background: linear-gradient(90deg, rgba(2,11,21,.92) 0%, rgba(2,13,24,.74) 44%, rgba(2,13,24,.22) 75%, rgba(2,13,24,.42) 100%), linear-gradient(0deg, rgba(3,13,24,.78) 0%, transparent 50%); }
.blueprint-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(85,175,227,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(85,175,227,.08) 1px, transparent 1px); background-size: 82px 82px; mask-image: linear-gradient(90deg, black, transparent 85%); }
.blueprint-grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 48%, rgba(72,189,241,.13) 49%, transparent 50%); background-size: 460px 460px; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); border: 1px solid rgba(113,203,245,.14); box-shadow: inset 0 0 80px rgba(40,146,210,.08); }
.hero__orb--one { width: 560px; height: 560px; right: -250px; top: 8%; }
.hero__orb--two { width: 290px; height: 290px; right: 8%; bottom: -150px; }
.hero__content { position: relative; min-height: 100svh; padding: 170px 0 145px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero__copy { max-width: 890px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 28px; color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { width: 42px; height: 1px; background: var(--cyan); box-shadow: 0 0 12px rgba(72,189,241,.7); }
.hero h1 { margin: 0; max-width: 980px; font-size: clamp(58px, 7.5vw, 120px); line-height: .89; letter-spacing: -.055em; font-weight: 750; text-wrap: balance; }
.hero h1 em, .section-heading h2 em { font-style: normal; font-weight: 350; color: var(--ice); }
.hero__lead { max-width: 690px; margin: 33px 0 0; color: rgba(255,255,255,.73); font-size: 17px; line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.hero__credential { width: 198px; flex: 0 0 198px; align-self: flex-end; margin-bottom: 70px; padding: 24px; border: 1px solid rgba(255,255,255,.19); background: rgba(4,19,34,.35); backdrop-filter: blur(14px); box-shadow: var(--shadow-dark); }
.credential__top, .credential__bottom { display: flex; flex-direction: column; gap: 8px; }
.credential__top span, .credential__bottom span { color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; line-height: 1.5; }
.credential__top strong { font-size: 30px; letter-spacing: .06em; }
.credential__bottom strong { font-size: 18px; color: var(--cyan); }
.credential__line { height: 1px; margin: 22px 0; background: linear-gradient(90deg, var(--cyan), transparent); }
.hero__rail { position: absolute; left: 0; right: 0; bottom: 0; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(3,13,24,.4); backdrop-filter: blur(9px); font-size: 9px; letter-spacing: .25em; color: rgba(255,255,255,.58); }
.hero__rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.scroll-cue { position: absolute; right: 42px; bottom: 96px; display: flex; align-items: center; gap: 14px; writing-mode: vertical-rl; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 54px; background: linear-gradient(transparent, var(--cyan)); animation: scroll-pulse 2s infinite; }
@keyframes scroll-pulse { 0%,100% { opacity:.3; transform: scaleY(.65); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); } }

/* Shared headings */
.section-index { margin: 0 0 28px; font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); font-weight: 800; }
.section-dark .section-index, .section-heading--inverse .section-index, .culture .section-index, .contact .section-index { color: var(--cyan); }
.section-heading { margin-bottom: 76px; }
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.section-heading h2 { margin: 0; font-size: clamp(46px, 5.8vw, 88px); line-height: .98; letter-spacing: -.048em; }
.section-heading h2 em { color: var(--blue); }
.section-heading--inverse h2 em { color: var(--cyan); }
.section-intro { margin: 0 0 6px; font-size: 16px; line-height: 1.8; color: #526478; }
.section-heading--inverse .section-intro { color: rgba(255,255,255,.62); }
.kicker { margin: 0 0 18px; color: var(--cyan); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

/* Statement */
.statement { position: relative; padding: 150px 0; overflow: hidden; }
.statement::before { content: ""; position: absolute; width: 880px; height: 880px; left: -380px; top: -500px; border-radius: 50%; border: 1px solid rgba(65,169,225,.12); box-shadow: inset 0 0 140px rgba(25,122,182,.07); }
.statement__grid { display: grid; grid-template-columns: 180px minmax(0, 1fr) 200px; gap: 62px; align-items: start; }
.statement__copy h2 { max-width: 860px; margin: 0; font-size: clamp(44px, 5.6vw, 82px); line-height: 1.03; letter-spacing: -.04em; }
.statement__copy > p:last-child { max-width: 630px; margin: 28px 0 0; color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.75; }
.statement__seal { width: 190px; height: 190px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; align-content: center; text-align: center; background: radial-gradient(circle at 35% 25%, rgba(57,168,230,.22), rgba(255,255,255,.02) 55%); box-shadow: inset 0 0 45px rgba(70,174,228,.1), 0 22px 60px rgba(0,0,0,.22); }
.statement__seal span { font-size: 42px; font-weight: 800; letter-spacing: .15em; margin-left: .15em; }
.statement__seal small { margin-top: 10px; color: rgba(255,255,255,.52); text-transform: uppercase; font-size: 8px; letter-spacing: .17em; line-height: 1.55; }

/* About */
.about { padding: 150px 0 130px; }
.about__composition { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; min-height: 650px; }
.about__image { margin: 0; overflow: hidden; position: relative; background: #dbe4ea; }
.about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.about__image:hover img { transform: scale(1.035); }
.about__image--primary { height: 650px; }
.about__image--secondary { height: 470px; align-self: end; margin-bottom: 48px; }
.about__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,14,24,.5), transparent 45%); pointer-events: none; }
.about__image figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; flex-wrap: wrap; gap: 14px; color: white; }
.about__image figcaption span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(2,13,24,.25); backdrop-filter: blur(8px); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.about__card { position: absolute; right: calc(42% - 34px); top: 54px; z-index: 3; width: 230px; min-height: 250px; padding: 32px; background: linear-gradient(150deg, #0e77bf, #0a4d82); color: white; box-shadow: 0 28px 70px rgba(7, 59, 96, .3); }
.about__card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.about__card-number { display: block; font-size: 54px; font-weight: 800; letter-spacing: -.05em; }
.about__card p { margin: 2px 0 18px; font-size: 14px; letter-spacing: .15em; text-transform: uppercase; }
.about__card small { display: block; color: rgba(255,255,255,.7); line-height: 1.65; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { min-height: 155px; padding: 30px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.stat:last-child { border-right: 0; }
.stat strong { font-size: 46px; letter-spacing: -.045em; color: var(--blue); }
.stat:not(.stat--word) strong::after { content: "+"; font-size: 20px; vertical-align: super; }
.stat[data-counter="26"] strong::after, .stat[data-counter="7"] strong::after { content: ""; }
.stat span { max-width: 180px; margin-top: 7px; color: #637386; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .12em; }

/* Services */
.services { position: relative; padding: 150px 0; overflow: hidden; }
.services::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(74,172,226,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(74,172,226,.12) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 75% 45%, black 0, transparent 65%); }
.services__halo { position: absolute; right: -300px; top: -280px; width: 850px; height: 850px; border: 1px solid rgba(69,185,239,.11); border-radius: 50%; box-shadow: inset 0 0 180px rgba(36,146,206,.06); }
.services .container { position: relative; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { position: relative; min-height: 340px; padding: 32px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.018); overflow: hidden; transition: background .45s, transform .45s var(--ease); }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: linear-gradient(180deg, transparent, rgba(27,143,204,.17)); transition: height .5s var(--ease); }
.service-card:hover { background: rgba(255,255,255,.045); transform: translateY(-7px); z-index: 2; }
.service-card:hover::before { height: 75%; }
.service-card__head { position: relative; display: flex; justify-content: space-between; align-items: start; }
.service-card__head span { color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .18em; }
.service-card__head svg { width: 38px; height: 38px; color: var(--cyan); }
.service-card h3 { position: relative; margin: 86px 0 18px; font-size: 21px; letter-spacing: -.02em; }
.service-card p { position: relative; margin: 0; color: rgba(255,255,255,.53); font-size: 14px; line-height: 1.72; }
.service-card--accent { background: linear-gradient(145deg, rgba(20,133,194,.75), rgba(7,62,101,.86)); }
.service-card--accent::after { content: ""; position: absolute; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; right: -120px; top: -110px; }
.service-card--accent a { position: relative; display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.service-card--accent a svg { width: 18px; height: 18px; }

/* Projects */
.projects { padding: 150px 0 120px; }
.project-mosaic { width: min(1480px, calc(100vw - 32px)); margin-inline: auto; display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 320px; gap: 12px; }
.project-card { position: relative; border: 0; padding: 0; overflow: hidden; cursor: pointer; background: var(--ink); text-align: left; color: white; }
.project-card--wide { grid-column: span 2; }
.project-card--tall { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.project-card--wide:first-child img { object-position: 50% 68%; }
.project-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,10,18,.9), transparent 60%), linear-gradient(90deg, rgba(2,10,18,.15), transparent); transition: background .5s; }
.project-card__meta { position: absolute; left: 28px; right: 28px; bottom: 27px; display: flex; flex-direction: column; align-items: flex-start; }
.project-card__meta small { margin-bottom: 9px; color: var(--cyan); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.project-card__meta strong { font-size: 28px; letter-spacing: -.025em; }
.project-card__meta em { margin-top: 5px; font-style: normal; color: rgba(255,255,255,.64); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.project-card__open { position: absolute; right: 24px; top: 24px; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(3,15,26,.24); backdrop-filter: blur(9px); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transform: translateY(-10px); transition: opacity .35s, transform .35s; }
.project-card__open svg { width: 16px; height: 16px; }
.project-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
.project-card:hover .project-card__open { opacity: 1; transform: translateY(0); }
.projects__footer { margin-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.projects__footer p { margin: 0; color: #657488; font-size: 12px; letter-spacing: .04em; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.text-link svg { width: 19px; height: 19px; transition: transform .3s; }
.text-link:hover svg { transform: translateX(5px); }

/* Culture */
.culture { position: relative; min-height: 880px; color: white; background: var(--ink); display: flex; align-items: center; overflow: hidden; }
.culture__media { position: absolute; inset: 0; }
.culture__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) saturate(.75); }
.culture__media span { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,12,22,.95) 0%, rgba(3,18,32,.83) 52%, rgba(3,18,32,.55) 100%), linear-gradient(0deg, rgba(3,16,28,.8), transparent 60%); }
.culture__media::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(80,185,240,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(80,185,240,.08) 1px, transparent 1px); background-size: 90px 90px; opacity: .4; }
.culture__inner { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; padding-block: 130px; }
.culture__heading h2 { margin: 0; max-width: 500px; font-size: clamp(50px, 5.7vw, 82px); line-height: 1; letter-spacing: -.045em; }
.culture__tabs { padding: 42px; border: 1px solid rgba(255,255,255,.16); background: rgba(5,20,34,.46); backdrop-filter: blur(18px); box-shadow: var(--shadow-dark); }
.culture__tablist { display: flex; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.14); }
.culture__tablist button { position: relative; border: 0; background: transparent; color: rgba(255,255,255,.46); padding: 0 0 18px; margin-right: 28px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; }
.culture__tablist button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--cyan); transition: right .4s var(--ease); }
.culture__tablist button[aria-selected="true"] { color: white; }
.culture__tablist button[aria-selected="true"]::after { right: 0; }
.culture__panels { min-height: 355px; display: flex; align-items: center; }
.culture__panels article { position: relative; padding: 45px 5px 10px 54px; }
.quote-mark { position: absolute; left: 0; top: 25px; font-family: Georgia, serif; color: var(--cyan); font-size: 86px; line-height: 1; opacity: .7; }
.culture__panels p { margin: 0; font-size: clamp(21px, 2vw, 31px); line-height: 1.55; font-weight: 320; letter-spacing: -.02em; }
.culture__pillars { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.culture__pillars p { margin: 0; padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.64); font-size: 10px; letter-spacing: .16em; text-align: center; text-transform: uppercase; }
.culture__pillars p:last-child { border-right: 0; }

/* Values */
.values { padding: 140px 0; border-top: 1px solid rgba(255,255,255,.08); }
.values__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: start; }
.values__intro h2 { margin: 0; font-size: clamp(45px, 5vw, 75px); line-height: 1.03; letter-spacing: -.04em; }
.values__list { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 16px; }
.values__list span { padding: 18px 21px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; transition: background .3s, color .3s, border-color .3s, transform .3s; }
.values__list span:hover { transform: translateY(-4px); background: rgba(35,154,217,.17); border-color: rgba(72,189,241,.5); color: white; }

/* Coverage */
.coverage { position: relative; padding: 150px 0 0; overflow: hidden; }
.coverage::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,72,115,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(10,72,115,.055) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, transparent, black 40%, transparent); }
.coverage__grid { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; min-height: 650px; align-items: center; }
.coverage__copy h2 { margin: 0; font-size: clamp(50px, 5.6vw, 82px); line-height: 1; letter-spacing: -.045em; }
.coverage__copy > p:not(.section-index) { max-width: 520px; margin: 27px 0 0; color: #607186; font-size: 16px; line-height: 1.8; }
.coverage__number { margin-top: 42px; display: flex; align-items: center; gap: 20px; }
.coverage__number strong { font-size: 86px; line-height: .9; letter-spacing: -.07em; color: var(--blue); }
.coverage__number span { color: #627387; font-size: 10px; line-height: 1.6; text-transform: uppercase; letter-spacing: .15em; }
.coverage__map { position: relative; margin: 0; min-height: 590px; display: grid; place-items: center; }
.coverage__map img { width: min(850px, 100%); position: relative; z-index: 2; filter: drop-shadow(0 26px 45px rgba(6,62,102,.16)); }
.map-glow { position: absolute; width: 610px; height: 610px; border-radius: 50%; background: radial-gradient(circle, rgba(25,142,205,.13), transparent 66%); }
.map-pin { position: absolute; z-index: 3; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(72,189,241,.12), 0 0 22px rgba(30,160,225,.7); animation: pin-pulse 2.4s infinite; }
.map-pin--1 { left: 46%; top: 35%; }.map-pin--2 { left: 53%; top: 52%; animation-delay:.4s; }.map-pin--3 { left: 64%; top: 66%; animation-delay:.8s; }.map-pin--4 { left: 76%; top: 71%; animation-delay:1.2s; }.map-pin--5 { left: 43%; top: 62%; animation-delay:1.6s; }
@keyframes pin-pulse { 0%,100% { transform: scale(.8); opacity:.6; } 50% { transform: scale(1.15); opacity:1; } }
.state-marquee { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; }
.state-marquee div { width: max-content; display: flex; align-items: center; animation: marquee 34s linear infinite; }
.state-marquee span { padding: 23px 28px; color: #6b7c90; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.state-marquee span::before { content: "•"; margin-right: 28px; color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Clients */
.clients { padding: 105px 0 115px; }
.clients__heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 45px; }
.clients__heading .section-index { margin: 0; }
.clients__heading > p:last-child { margin: 0; color: #637488; font-size: 15px; }
.client-marquee { overflow: hidden; border-block: 1px solid var(--line); }
.client-marquee div { display: flex; align-items: center; width: max-content; animation: marquee 42s linear infinite reverse; }
.client-marquee span { padding: 35px 34px; font-size: 19px; font-weight: 750; letter-spacing: .05em; color: #192e43; white-space: nowrap; }
.client-marquee i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* Team */
.team { padding: 145px 0; }
.team__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 94px; align-items: center; }
.team__image { position: relative; height: 650px; overflow: hidden; }
.team__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.team__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,14,24,.55), transparent 55%); }
.team__label { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 12px 15px; color: white; border: 1px solid rgba(255,255,255,.25); background: rgba(3,14,24,.3); backdrop-filter: blur(8px); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.team__copy h2 { margin: 0; font-size: clamp(48px, 5vw, 76px); line-height: 1; letter-spacing: -.045em; }
.team__copy > p:not(.section-index) { margin: 28px 0 0; color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.8; }
.team__copy ul { list-style: none; margin: 38px 0 0; padding: 0; display: grid; gap: 16px; }
.team__copy li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.78); font-size: 13px; }
.team__copy li svg { width: 21px; height: 21px; color: var(--cyan); }

/* Contact */
.contact { position: relative; min-height: 900px; color: white; background: var(--ink); display: flex; align-items: center; overflow: hidden; }
.contact__media { position: absolute; inset: 0; }
.contact__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); }
.contact__media span { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,12,22,.96) 0%, rgba(2,14,25,.87) 48%, rgba(2,14,25,.63) 100%), linear-gradient(0deg, rgba(3,14,24,.8), transparent); }
.contact__inner { position: relative; padding-block: 130px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.contact__copy h2 { margin: 0; font-size: clamp(52px, 5.6vw, 86px); line-height: .98; letter-spacing: -.05em; }
.contact__copy > p:not(.section-index) { max-width: 560px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.8; }
.contact__details { display: grid; gap: 16px; margin-top: 46px; }
.contact__details a { display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.82); transition: color .3s, transform .3s; }
.contact__details a:hover { color: var(--cyan); transform: translateX(4px); }
.contact__details svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--cyan); }
.contact__details span { display: flex; flex-direction: column; gap: 4px; font-size: 13px; line-height: 1.4; }
.contact__details small { color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.contact-form { padding: 44px; background: rgba(248,251,253,.96); color: var(--ink); box-shadow: 0 36px 100px rgba(0,0,0,.38); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 20px; color: #536679; font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid #cbd5dd; border-radius: 0; outline: 0; background: transparent; padding: 12px 1px 14px; color: var(--ink); font-size: 14px; letter-spacing: 0; text-transform: none; transition: border-color .3s, box-shadow .3s; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #94a1ad; }
.button--submit { width: 100%; border: 0; margin-top: 3px; cursor: pointer; }
.form-note { margin: 13px 0 0; color: #7a8997; font-size: 10px; line-height: 1.5; text-align: center; }
.form-note.is-success { color: #0b7b51; }

/* Footer */
.site-footer { background: #020a12; color: white; padding: 78px 0 24px; }
.footer__top { display: grid; grid-template-columns: 240px 1fr auto; gap: 50px; align-items: center; padding-bottom: 54px; }
.footer__brand img { width: 230px; max-height: 190px; object-fit: contain; filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }
.footer__top p { margin: 0; max-width: 540px; color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.7; }
.text-link--light { color: var(--cyan); }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; color: rgba(255,255,255,.36); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.whatsapp { position: fixed; z-index: 800; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: white; background: rgba(4,23,38,.8); backdrop-filter: blur(14px); box-shadow: 0 14px 40px rgba(0,0,0,.22); transition: transform .3s, background .3s; }
.whatsapp:hover { transform: translateY(-4px); background: #0f79b9; }
.whatsapp span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #1fae70; font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.whatsapp em { font-style: normal; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

/* Dialog */
.project-dialog { width: min(1080px, calc(100vw - 40px)); max-height: calc(100svh - 40px); border: 0; padding: 0; color: var(--ink); background: white; box-shadow: 0 44px 140px rgba(0,0,0,.45); }
.project-dialog::backdrop { background: rgba(1,8,14,.82); backdrop-filter: blur(7px); }
.project-dialog[open] { display: grid; grid-template-columns: 1.15fr .85fr; animation: dialog-in .45s var(--ease); }
@keyframes dialog-in { from { opacity:0; transform: translateY(24px) scale(.98); } }
.project-dialog__media { min-height: 640px; background: #dbe3e9; }
.project-dialog__media img { width: 100%; height: 100%; object-fit: cover; }
.project-dialog__copy { padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
.project-dialog__copy > p:first-child { margin: 0 0 15px; color: var(--blue); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; font-weight: 750; }
.project-dialog__copy h2 { margin: 0; font-size: 48px; line-height: 1.02; letter-spacing: -.04em; }
.project-dialog__copy > p:nth-of-type(2) { margin: 25px 0 34px; color: #617286; font-size: 15px; line-height: 1.75; }
.project-dialog__close { position: absolute; z-index: 2; right: 16px; top: 16px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(3,14,24,.58); color: white; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(8px); }
.project-dialog__close svg { width: 20px; height: 20px; }

/* Reveal motion */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="70"] { --reveal-delay: 70ms; }
[data-reveal-delay="80"] { --reveal-delay: 80ms; }
[data-reveal-delay="100"] { --reveal-delay: 100ms; }
[data-reveal-delay="120"] { --reveal-delay: 120ms; }
[data-reveal-delay="140"] { --reveal-delay: 140ms; }
[data-reveal-delay="160"] { --reveal-delay: 160ms; }
[data-reveal-delay="180"] { --reveal-delay: 180ms; }
[data-reveal-delay="260"] { --reveal-delay: 260ms; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: min(1080px, calc(100vw - 56px)); }
  .main-nav { gap: 18px; }
  .header-actions .button--compact { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .project-card--tall { grid-row: auto; }
  .project-card--wide { grid-column: span 1; }
  .culture__inner { gap: 56px; }
  .contact__inner { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --container: calc(100vw - 40px); }
  .site-header { height: 76px; }
  .header-shell { width: calc(100vw - 30px); }
  .brand { min-width: 0; }
  .brand__mark { width: 48px; height: 48px; }
  .brand__copy small { display: none; }
  .opening-replay span { display: none; }
  .menu-toggle { display: grid; }
  .main-nav { position: fixed; z-index: -1; inset: 0; background: rgba(3,14,25,.98); backdrop-filter: blur(18px); flex-direction: column; justify-content: center; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .35s, visibility .35s, transform .35s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-size: 22px; letter-spacing: .07em; padding: 12px; }
  .hero__content { padding-top: 130px; align-items: flex-end; }
  .hero h1 { font-size: clamp(54px, 11vw, 92px); }
  .hero__credential { display: none; }
  .hero__copy { padding-bottom: 40px; }
  .scroll-cue { display: none; }
  .hero__rail { overflow: hidden; justify-content: flex-start; padding-left: 20px; gap: 18px; }
  .section-heading--split, .statement__grid, .values__grid, .coverage__grid, .team__grid, .contact__inner { grid-template-columns: 1fr; }
  .section-heading--split { gap: 35px; }
  .statement__grid { gap: 36px; }
  .statement__grid > .section-index { margin-bottom: 0; }
  .statement__seal { display: none; }
  .about__composition { grid-template-columns: 1fr; min-height: 0; }
  .about__image--primary { height: 560px; }
  .about__image--secondary { height: 400px; margin-bottom: 0; }
  .about__card { top: 430px; right: 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .project-mosaic { grid-auto-rows: 350px; }
  .culture { min-height: 0; }
  .culture__inner { grid-template-columns: 1fr; gap: 45px; }
  .culture__pillars { grid-template-columns: 1fr 1fr; }
  .culture__pillars p { border-bottom: 1px solid rgba(255,255,255,.16); }
  .culture__pillars p:nth-child(2n) { border-right: 0; }
  .culture__pillars p:last-child { grid-column: 1/-1; border-bottom: 0; }
  .coverage__grid { min-height: 0; }
  .coverage__map { min-height: 470px; }
  .clients__heading { align-items: start; flex-direction: column; }
  .team__grid { gap: 55px; }
  .team__image { height: 560px; }
  .contact__inner { padding-block: 110px; }
  .footer__top { grid-template-columns: 1fr; align-items: start; }
  .footer__brand img { width: 210px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 28px); }
  .opening__hud { left: 18px; right: 18px; top: 18px; }
  .opening__progress { left: 18px; right: 18px; bottom: 18px; }
  .opening__skip { right: 18px; bottom: 42px; }
  .header-shell { width: calc(100vw - 22px); }
  .brand__copy strong { font-size: 17px; }
  .opening-replay { display: none; }
  .hero__content { padding: 120px 0 105px; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); line-height: .93; }
  .hero__lead { font-size: 15px; line-height: 1.7; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__rail span:nth-of-type(n+4), .hero__rail i:nth-of-type(n+3) { display: none; }
  .statement, .about, .services, .projects, .values, .team { padding-top: 100px; padding-bottom: 100px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .statement__copy h2, .culture__heading h2, .values__intro h2, .coverage__copy h2, .team__copy h2, .contact__copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .section-intro { font-size: 14px; }
  .about__image--primary { height: 450px; }
  .about__image--secondary { height: 340px; }
  .about__card { position: relative; top: auto; right: auto; width: calc(100% - 28px); margin: -80px 14px 0 auto; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-card h3 { margin-top: 64px; }
  .project-mosaic { width: calc(100vw - 16px); grid-template-columns: 1fr; grid-auto-rows: 380px; gap: 8px; }
  .projects__footer { align-items: flex-start; flex-direction: column; }
  .culture__inner { padding-block: 100px; }
  .culture__tabs { padding: 28px 22px; }
  .culture__panels { min-height: 430px; }
  .culture__panels article { padding-left: 38px; }
  .culture__panels p { font-size: 20px; line-height: 1.55; }
  .culture__pillars { grid-template-columns: 1fr; }
  .culture__pillars p { border-right: 0; }
  .culture__pillars p:last-child { grid-column: auto; }
  .values__grid { gap: 48px; }
  .values__list span { width: 100%; }
  .coverage { padding-top: 100px; }
  .coverage__map { min-height: 360px; }
  .map-pin { display: none; }
  .client-marquee span { font-size: 15px; padding-inline: 24px; }
  .team__image { height: 430px; }
  .contact { min-height: 0; }
  .contact__inner { padding-block: 100px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp { right: 14px; bottom: 14px; padding-right: 8px; }
  .whatsapp em { display: none; }
  .project-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .project-dialog__media { min-height: 360px; }
  .project-dialog__copy { padding: 36px 24px 44px; }
  .project-dialog__copy h2 { font-size: 38px; }
}

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