:root {
  --navy: #070b4a;
  --navy-deep: #04062f;
  --slate: #393c6e;
  --blue: #176ba3;
  --sky: #54c7f4;
  --white: #ffffff;
  --mist: #f3f6fb;
  --ink: #10142f;
  --muted: #60657a;
  --line: rgba(7, 11, 74, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 28px;
  --shadow: 0 24px 70px rgba(7, 11, 74, 0.13);
  --font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: var(--navy); background: white; border-radius: 8px; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }

.utility-bar { position: relative; z-index: 40; height: 34px; color: rgba(255,255,255,.72); background: var(--navy-deep); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 12px; align-items: center; }
.utility-links a { transition: color .2s ease; }
.utility-links a:hover { color: var(--white); }

.site-header { position: absolute; top: 34px; inset-inline: 0; z-index: 35; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.site-header.is-sticky { position: fixed; top: 0; background: rgba(7,11,74,.96); box-shadow: 0 10px 30px rgba(3,5,35,.22); backdrop-filter: blur(16px); }
.header-inner { min-height: 84px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 36px; }
.brand { width: 210px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(20px, 2.8vw, 42px); font-size: .86rem; font-weight: 650; letter-spacing: .04em; }
.desktop-nav a { position: relative; padding: 30px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: var(--sky); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { padding: 14px 24px 24px; color: white; background: var(--navy); border-top: 1px solid rgba(255,255,255,.12); }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 700; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.2; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 20px; font-size: .82rem; }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: var(--sky); box-shadow: 0 10px 24px rgba(84,199,244,.2); }
.button-primary { color: var(--navy); background: var(--sky); box-shadow: 0 14px 30px rgba(84,199,244,.16); }
.button-primary:hover { background: white; box-shadow: 0 16px 36px rgba(255,255,255,.16); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding: 6px 0; font-weight: 700; border-bottom: 1px solid currentColor; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.text-link-light { color: white; }

.hero { position: relative; min-height: 830px; display: flex; align-items: center; color: white; background: var(--navy); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 610px; height: 610px; right: -190px; top: 95px; background: radial-gradient(circle, rgba(23,107,163,.44) 0, rgba(23,107,163,0) 68%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: linear-gradient(to top, rgba(4,6,47,.42), transparent); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 86px 86px; mask-image: linear-gradient(90deg, black, transparent 66%); }
.hero-orbit { position: absolute; border: 1px solid rgba(84,199,244,.25); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 520px; height: 520px; right: 5%; top: 18%; }
.hero-orbit-two { width: 720px; height: 720px; right: -5%; top: 5%; border-color: rgba(255,255,255,.12); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: center; gap: clamp(50px, 7vw, 100px); padding-top: 154px; padding-bottom: 84px; }
.hero-copy { max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--sky); }
h1, h2, h3, p { overflow-wrap: break-word; }
.word-intact { white-space: nowrap; }
h1 { max-width: 780px; margin: 0; font-size: clamp(3.3rem, 6.4vw, 6.2rem); line-height: .98; letter-spacing: -.06em; font-weight: 720; }
h1 em, h2 em, h3 em { color: var(--sky); font-style: normal; font-weight: inherit; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; }
.hero-proof { display: flex; gap: clamp(28px, 4vw, 58px); margin: 54px 0 0; padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.hero-proof li { display: grid; gap: 2px; }
.hero-proof strong { color: white; font-size: 1.5rem; line-height: 1; }
.hero-proof span { color: rgba(255,255,255,.55); font-size: .73rem; letter-spacing: .05em; text-transform: uppercase; }
.hero-visual { position: relative; max-width: 460px; justify-self: end; padding-left: 42px; }
.portrait-frame { position: relative; overflow: hidden; border-radius: 220px 220px 24px 24px; box-shadow: 0 30px 80px rgba(1,3,30,.48); }
.portrait-frame::before { content: ""; position: absolute; inset: 0; z-index: 2; border: 1px solid rgba(255,255,255,.22); border-radius: inherit; pointer-events: none; }
.portrait-frame img { width: 100%; aspect-ratio: 2 / 2.85; object-fit: cover; object-position: 50% 25%; filter: saturate(.88) contrast(1.03); }
.portrait-shade { position: absolute; inset: 48% 0 0; background: linear-gradient(transparent, rgba(3,5,35,.88)); }
.portrait-caption { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: center; gap: 12px; }
.portrait-caption div { display: grid; }
.portrait-caption strong { font-size: .95rem; }
.portrait-caption small { color: rgba(255,255,255,.6); font-size: .76rem; }
.status-dot { width: 11px; height: 11px; flex: 0 0 auto; background: var(--sky); border-radius: 50%; box-shadow: 0 0 0 6px rgba(84,199,244,.15); }
.signal-card { position: absolute; z-index: 4; left: 0; top: 52%; width: 280px; display: flex; align-items: center; gap: 16px; padding: 18px; color: var(--navy); background: rgba(255,255,255,.95); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.signal-card p { display: grid; margin: 0; line-height: 1.35; }
.signal-card strong { font-size: .78rem; }
.signal-card span { color: var(--muted); font-size: .68rem; }
.signal-icon { width: 42px; height: 42px; flex: 0 0 auto; display: flex; align-items: end; justify-content: center; gap: 3px; padding: 9px; background: var(--mist); border-radius: 50%; }
.signal-icon i { width: 4px; background: var(--blue); border-radius: 4px; }
.signal-icon i:nth-child(1) { height: 9px; }.signal-icon i:nth-child(2) { height: 16px; }.signal-icon i:nth-child(3) { height: 23px; background: var(--sky); }
.vertical-note { position: absolute; right: -102px; top: 50%; margin: 0; color: rgba(255,255,255,.3); font-size: .64rem; letter-spacing: .22em; transform: rotate(90deg); }
.hero-scroll { position: absolute; z-index: 5; left: calc((100vw - min(1180px, calc(100vw - 48px))) / 2); bottom: 26px; display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-scroll i { width: 1px; height: 34px; background: linear-gradient(var(--sky) 50%, rgba(255,255,255,.25) 50%); background-size: 100% 200%; animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0% { background-position: 0 100%; } 60%,100% { background-position: 0 0; } }

.manifesto { background: white; }
.manifesto-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.section-heading h2, .section-intro h2, .format-heading h2, .cabinet-copy h2, .references-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(2.75rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.055em; }
.section-heading h2 em { color: var(--blue); }
.manifesto-copy { padding-top: 48px; }
.manifesto-copy > p { max-width: 640px; color: var(--muted); font-size: 1.04rem; }
.lead-copy { color: var(--ink) !important; font-size: clamp(1.3rem, 2vw, 1.85rem) !important; line-height: 1.45 !important; }
.audience-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.audience-cloud span { padding: 10px 15px; color: var(--navy); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 700; }

.expertise-section { background: var(--mist); }
.section-intro { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-intro > p { max-width: 550px; margin: 0 0 6px; color: var(--muted); font-size: 1.1rem; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expertise-card { min-height: 575px; display: flex; flex-direction: column; padding: 34px; background: white; border: 1px solid rgba(7,11,74,.09); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.expertise-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.expertise-card-featured { color: white; background: var(--navy); }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-number { color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.expertise-card-featured .card-number { color: var(--sky); }
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--mist); border-radius: 50%; transition: transform .25s ease; }
.expertise-card:hover .card-icon { transform: rotate(45deg); }
.expertise-card-featured .card-icon { color: white; background: rgba(255,255,255,.12); }
.expertise-card h3 { margin: 48px 0 24px; font-size: clamp(1.8rem, 2.7vw, 2.4rem); line-height: 1.08; letter-spacing: -.045em; }
.expertise-card h3 em { color: var(--blue); }
.expertise-card-featured h3 em { color: var(--sky); }
.expertise-card > p { min-height: 78px; margin: 0; color: var(--muted); }
.expertise-card-featured > p { color: rgba(255,255,255,.7); }
.expertise-card ul { display: grid; gap: 10px; margin: 28px 0 32px; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.expertise-card-featured ul { border-color: rgba(255,255,255,.15); }
.expertise-card li { position: relative; padding-left: 20px; color: var(--muted); font-size: .88rem; }
.expertise-card-featured li { color: rgba(255,255,255,.72); }
.expertise-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.expertise-card-featured li::before { background: var(--sky); }
.expertise-card > a { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 800; }
.expertise-card-featured > a { border-color: rgba(255,255,255,.15); }
.expertise-card > a span { transition: transform .2s ease; }
.expertise-card > a:hover span { transform: translateX(5px); }
.partnership-note { margin: 24px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.format-section { position: relative; color: white; background: var(--navy); overflow: hidden; }
.format-section::after { content: ""; position: absolute; width: 500px; height: 500px; right: -160px; top: -230px; border: 1px solid rgba(84,199,244,.24); border-radius: 50%; box-shadow: 0 0 0 80px rgba(84,199,244,.035), 0 0 0 160px rgba(84,199,244,.025); }
.format-shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: clamp(48px, 7vw, 78px); align-items: start; }
.format-heading { position: static; display: grid; grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.format-heading .eyebrow { margin-top: 14px; }
.format-heading h2 { max-width: 820px; font-size: clamp(2.7rem, 4.4vw, 4rem); }
.format-experience { display: grid; grid-template-columns: 220px 1fr; min-height: 430px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.format-tabs { display: flex; flex-direction: column; background: rgba(255,255,255,.04); border-right: 1px solid rgba(255,255,255,.14); }
.format-tabs button { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; color: rgba(255,255,255,.5); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); cursor: pointer; text-align: left; font-weight: 700; }
.format-tabs button:last-child { border-bottom: 0; }
.format-tabs button span { color: rgba(255,255,255,.28); font-size: .7rem; }
.format-tabs button[aria-selected="true"] { color: var(--navy); background: var(--sky); }
.format-tabs button[aria-selected="true"] span { color: rgba(7,11,74,.5); }
.format-panels { padding: clamp(32px, 5vw, 64px); }
.format-panels article[hidden] { display: none; }
.panel-kicker { margin: 0 0 28px; color: var(--sky); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.format-panels h3 { max-width: 580px; margin: 0 0 24px; font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
.format-panels article > p:not(.panel-kicker) { max-width: 580px; color: rgba(255,255,255,.66); }
.format-panels .text-link { margin-top: 26px; }

.approach-section { background: white; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { position: relative; min-height: 270px; padding: 28px 28px 18px 0; border-right: 1px solid var(--line); }
.process-list li:last-child { border-right: 0; padding-right: 0; }
.process-list li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 6px white; }
.process-list > li > span { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.process-list div { margin-top: 86px; }
.process-list h3 { margin: 0 0 12px; font-size: 1.55rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.cabinet-section { background: var(--mist); }
.cabinet-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 10vw, 130px); align-items: center; }
.cabinet-visual { position: relative; min-height: 570px; display: grid; place-items: center; color: white; background: var(--navy); border-radius: 52% 48% 18% 18% / 30% 30% 12% 12%; overflow: hidden; }
.cabinet-visual::before { content: ""; position: absolute; width: 360px; height: 360px; top: -100px; right: -70px; background: radial-gradient(circle, rgba(84,199,244,.34), transparent 66%); }
.cabinet-monogram { position: relative; font-size: clamp(7rem, 15vw, 12rem); font-weight: 800; letter-spacing: -.12em; opacity: .08; transform: translateX(-.06em); }
.independence-seal { position: absolute; width: 185px; height: 185px; display: grid; place-content: center; gap: 8px; text-align: center; background: var(--blue); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.independence-seal span { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
.independence-seal strong { font-size: 1.05rem; line-height: 1.25; }
.route-line { position: absolute; inset: 40px; border: 1px solid rgba(255,255,255,.11); border-radius: inherit; }
.route-line i { position: absolute; width: 8px; height: 8px; background: var(--sky); border-radius: 50%; }
.route-line i:nth-child(1) { left: 12%; top: 17%; }.route-line i:nth-child(2) { right: 17%; top: 23%; }.route-line i:nth-child(3) { right: 8%; bottom: 22%; }.route-line i:nth-child(4) { left: 20%; bottom: 12%; }
.cabinet-copy > p:not(.eyebrow) { color: var(--muted); }
.cabinet-copy blockquote { margin: 34px 0; padding: 20px 0 20px 24px; color: var(--navy); border-left: 3px solid var(--blue); font-size: 1.13rem; font-weight: 700; }
.values-row { display: flex; flex-wrap: wrap; gap: 8px; }
.values-row span { padding: 8px 12px; color: var(--slate); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.regulatory-section { padding: 54px 0; background: white; }
.regulatory-panel { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; padding: clamp(44px, 6vw, 72px); color: white; background: var(--navy); border-radius: 32px; overflow: hidden; }
.regulatory-panel::before { content: ""; position: absolute; width: 420px; height: 420px; right: -210px; top: -240px; border: 1px solid rgba(84,199,244,.26); border-radius: 50%; box-shadow: 0 0 0 78px rgba(84,199,244,.035), 0 0 0 156px rgba(84,199,244,.025); }
.regulatory-copy, .regulatory-marks { position: relative; z-index: 1; }
.regulatory-copy h2 { margin: 0; font-size: clamp(2.4rem, 4.4vw, 4.2rem); line-height: 1.02; letter-spacing: -.05em; }
.regulatory-copy > p:not(.eyebrow) { max-width: 620px; margin: 22px 0 30px; color: rgba(255,255,255,.66); }
.regulatory-marks { display: grid; }
.regulatory-marks div { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.regulatory-marks div:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.regulatory-marks span { color: rgba(255,255,255,.48); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.regulatory-marks strong { color: var(--sky); font-size: 1.55rem; letter-spacing: -.02em; }

.references-section { overflow: hidden; background: white; }
.references-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: end; }
.references-heading > p { max-width: 550px; margin: 0 0 8px; color: var(--muted); }
.logo-carousel { position: relative; margin-top: 60px; padding: 24px 0; border-block: 1px solid var(--line); }
.carousel-viewport { overflow: hidden; }
.carousel-track { width: max-content; display: flex; align-items: stretch; gap: 16px; animation: marquee 42s linear infinite; }
.logo-carousel.is-paused .carousel-track, .logo-carousel:hover .carousel-track, .logo-carousel:focus-within .carousel-track { animation-play-state: paused; }
.client-logo { width: 230px; min-height: 145px; display: grid; place-items: center; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 26px rgba(7,11,74,.055); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.client-logo-wide { width: 280px; }
.client-logo:hover { transform: translateY(-3px); border-color: rgba(23,107,163,.35); box-shadow: 0 14px 34px rgba(7,11,74,.11); }
.client-logo img { width: auto; height: auto; max-width: 100%; max-height: 82px; object-fit: contain; }
.client-logo-wide img { max-height: 88px; }
.carousel-toggle { position: absolute; z-index: 3; right: 24px; top: -23px; width: 44px; height: 44px; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; box-shadow: 0 8px 20px rgba(7,11,74,.1); }
.toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@keyframes marquee { to { transform: translateX(calc(-50% - 8px)); } }

.contact-section { padding-top: 40px; background: white; }
.contact-panel { position: relative; display: grid; grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr); gap: clamp(46px, 6vw, 76px); padding: clamp(44px, 6vw, 76px); color: white; background: var(--navy); border-radius: 36px; overflow: hidden; }
.contact-panel::before { content: ""; position: absolute; width: 390px; height: 390px; left: -170px; bottom: -230px; background: var(--blue); border-radius: 50%; filter: blur(20px); opacity: .48; }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-copy h2 { font-size: clamp(2.5rem, 4.7vw, 4.6rem); }
.contact-copy > h2 + p { max-width: 560px; color: rgba(255,255,255,.66); font-size: 1.02rem; }
.contact-direct { display: grid; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.17); }
.contact-direct a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-direct a > span { min-width: 0; display: grid; gap: 1px; }
.contact-direct small { color: var(--sky); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-direct strong { overflow-wrap: anywhere; font-size: .86rem; }
.contact-direct b { flex: 0 0 auto; font-size: 1rem; transition: transform .2s ease; }
.contact-direct a:hover b { transform: translate(3px, -2px); }
.contact-form { padding: clamp(28px, 4vw, 40px); color: var(--ink); background: white; border-radius: 24px; box-shadow: 0 26px 70px rgba(1,3,30,.3); }
.form-heading { margin-bottom: 26px; }
.form-heading p { margin: 0 0 7px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h3 { margin: 0; color: var(--navy); font-size: clamp(1.55rem, 2.4vw, 2.05rem); line-height: 1.15; letter-spacing: -.035em; }
.form-heading > span { display: block; margin-top: 8px; color: var(--muted); font-size: .75rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { min-width: 0; display: grid; align-content: start; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field > span { color: var(--navy); font-size: .76rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--mist); border: 1px solid rgba(7,11,74,.16); border-radius: 10px; font: inherit; font-size: .92rem; line-height: 1.4; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.form-field select { cursor: pointer; }
.form-field textarea { min-height: 128px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #7f8395; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(23,107,163,.45); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; background: white; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(84,199,244,.22); }
.form-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; color: var(--muted); font-size: .73rem; line-height: 1.5; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--blue); }
.form-consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; margin-top: 22px; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.45; text-align: center; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-decoration { position: absolute; right: 0; top: 0; width: 260px; height: 130px; opacity: .14; }
.contact-decoration span { position: absolute; right: -40px; top: -90px; width: 220px; height: 220px; border: 1px solid white; border-radius: 50%; }
.contact-decoration span:nth-child(2) { right: 10px; }.contact-decoration span:nth-child(3) { right: 60px; }

.confirmation-page { min-height: 100vh; color: white; background: var(--navy); }
.confirmation-main { position: relative; min-height: calc(100vh - 84px); display: grid; place-items: center; padding: 80px 0; overflow: hidden; }
.confirmation-main::before { content: ""; position: absolute; width: 560px; height: 560px; right: -140px; top: -220px; border: 1px solid rgba(84,199,244,.28); border-radius: 50%; box-shadow: 0 0 0 90px rgba(84,199,244,.035), 0 0 0 180px rgba(84,199,244,.02); }
.confirmation-card { position: relative; z-index: 1; max-width: 720px; padding: clamp(38px, 7vw, 76px); color: var(--ink); background: white; border-radius: 30px; box-shadow: 0 32px 90px rgba(1,3,30,.36); }
.confirmation-mark { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 30px; color: var(--navy); background: var(--sky); border-radius: 50%; font-size: 1.65rem; font-weight: 800; }
.confirmation-card h1 { color: var(--navy); font-size: clamp(2.7rem, 6vw, 5rem); }
.confirmation-card > p:not(.eyebrow) { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: 1.05rem; }
.confirmation-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; }
.confirmation-actions .text-link { color: var(--navy); }

.site-footer { color: white; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.35fr 1fr 1fr .6fr; gap: 52px; padding: 70px 0; }
.footer-brand img { width: 230px; }
.footer-brand p { margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-block { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; color: rgba(255,255,255,.62); font-size: .85rem; }
.footer-block address { font-style: normal; }
.footer-block a { transition: color .2s ease; }
.footer-block a:hover { color: var(--sky); }
.footer-label { margin: 0 0 14px; color: white; font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 23px 0; color: rgba(255,255,255,.43); border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; align-items: center; gap: 24px; }
.footer-bottom a:hover { color: white; }
.back-to-top { padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; }
.back-to-top:hover { color: white; }

.legal-page { min-height: 100vh; background: var(--mist); }
.legal-header { position: relative; top: auto; color: white; background: var(--navy); }
.legal-main { padding: 90px 0 120px; }
.legal-hero { max-width: 850px; margin-bottom: 70px; }
.legal-hero h1 { color: var(--navy); font-size: clamp(3rem, 7vw, 5.8rem); }
.legal-hero p { color: var(--muted); font-size: 1.1rem; }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 90px; align-items: start; }
.legal-nav { position: sticky; top: 120px; display: grid; gap: 10px; }
.legal-nav a { padding: 9px 0; color: var(--muted); font-size: .86rem; border-bottom: 1px solid var(--line); }
.legal-content article { padding: 0 0 46px; margin-bottom: 46px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 22px; color: var(--navy); font-size: 1.8rem; }
.legal-content h3 { margin: 26px 0 8px; font-size: 1.05rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-alert { padding: 20px; color: var(--navy) !important; background: rgba(84,199,244,.18); border-left: 3px solid var(--blue); }

.documents-page { min-height: 100vh; background: var(--mist); }
.documents-hero { position: relative; padding: 100px 0 92px; color: white; background: var(--navy); overflow: hidden; }
.documents-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 82px 82px; mask-image: linear-gradient(90deg, black, transparent 78%); }
.documents-hero::after { content: ""; position: absolute; width: 470px; height: 470px; right: -120px; top: -270px; border: 1px solid rgba(84,199,244,.34); border-radius: 50%; box-shadow: 0 0 0 80px rgba(84,199,244,.035), 0 0 0 160px rgba(84,199,244,.025); }
.documents-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.documents-hero h1 { font-size: clamp(3.7rem, 7.5vw, 7rem); }
.documents-hero-copy { padding-bottom: 12px; }
.documents-hero-copy p { max-width: 520px; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.current-year { display: inline-flex; padding: 8px 14px; color: var(--navy); background: var(--sky); border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.documents-section { background: var(--mist); }
.documents-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 76px; align-items: end; margin-bottom: 56px; }
.documents-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: 1.02; letter-spacing: -.055em; }
.documents-intro > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); }
.document-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.document-card { min-width: 0; display: flex; flex-direction: column; padding: 32px; background: white; border: 1px solid rgba(7,11,74,.09); border-radius: 24px; box-shadow: 0 14px 40px rgba(7,11,74,.055); }
.document-card-top { display: flex; align-items: center; justify-content: space-between; }
.document-sequence { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.document-badge { padding: 6px 10px; color: var(--navy); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; font-weight: 800; }
.document-organization { min-height: 58px; display: flex; align-items: baseline; gap: 7px; margin-top: 34px; color: var(--navy); font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
.document-organization small { color: var(--blue); font-size: .72rem; letter-spacing: .02em; text-transform: uppercase; }
.document-card h3 { margin: 18px 0 14px; color: var(--ink); font-size: 1.45rem; line-height: 1.18; letter-spacing: -.025em; }
.document-card > p { min-height: 78px; margin: 0; color: var(--muted); font-size: .88rem; }
.document-card dl { display: grid; gap: 0; margin: 24px 0 30px; border-top: 1px solid var(--line); }
.document-card dl div { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.document-card dt { color: var(--muted); font-size: .73rem; }
.document-card dd { margin: 0; color: var(--navy); font-size: .73rem; font-weight: 800; text-align: right; }
.document-actions { display: grid; gap: 14px; margin-top: auto; }
.document-actions .button { width: 100%; }
.document-download { display: flex; align-items: center; justify-content: space-between; padding: 10px 4px 0; color: var(--navy); font-size: .78rem; font-weight: 800; }
.document-download span { transition: transform .2s ease; }
.document-download:hover span { transform: translateY(3px); }
.annual-update { display: grid; grid-template-columns: .42fr 1fr; gap: 64px; align-items: center; margin-top: 54px; padding: clamp(34px, 5vw, 58px); background: white; border: 1px solid var(--line); border-radius: 26px; }
.annual-update-year { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 150px; color: var(--navy); background: var(--mist); border-radius: 18px; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.04em; }
.annual-update-year span { color: var(--blue); }
.annual-update .eyebrow { margin-bottom: 16px; }
.annual-update h2 { margin: 0; color: var(--navy); font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
.annual-update > div:last-child > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 190px 1fr auto; gap: 20px; }
  .brand { width: 185px; }
  .desktop-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero { min-height: 800px; }
  .hero-inner { grid-template-columns: 1.08fr .72fr; gap: 36px; }
  .hero-visual { padding-left: 10px; }
  .signal-card { left: -30px; width: 250px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 0; }
  .expertise-card > p { min-height: auto; }
  .format-shell { grid-template-columns: 1fr; }
  .format-heading { position: static; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-block:last-child { display: none; }
  .document-cards { grid-template-columns: 1fr; }
  .document-card > p { min-height: auto; }
  .contact-panel { grid-template-columns: minmax(0, .76fr) minmax(400px, 1.24fr); gap: 40px; }
}

@media (max-width: 900px) {
  .contact-panel { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 32px, 620px); --radius: 22px; }
  .section { padding: 82px 0; }
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand { width: 175px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 135px; padding-bottom: 100px; }
  h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { gap: 22px; justify-content: space-between; }
  .hero-proof span { max-width: 80px; }
  .hero-visual { width: min(100%, 430px); margin-top: 14px; justify-self: center; padding-left: 20px; }
  .signal-card { left: 0; top: 58%; }
  .vertical-note { display: none; }
  .hero-scroll { left: 16px; }
  .manifesto-grid, .section-intro, .cabinet-grid, .references-heading, .contact-panel, .legal-grid, .regulatory-panel, .documents-hero-inner, .documents-intro, .annual-update { grid-template-columns: 1fr; gap: 46px; }
  .manifesto-copy { padding-top: 0; }
  .section-intro { align-items: start; }
  .format-heading { grid-template-columns: 1fr; gap: 0; }
  .format-heading .eyebrow { margin-top: 0; }
  .format-experience { grid-template-columns: 1fr; }
  .format-tabs { flex-direction: row; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .format-tabs button { justify-content: center; padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; font-size: .78rem; }
  .format-tabs button span { display: none; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: auto; display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-list li:first-child { border-top: 0; }
  .process-list li::before { display: none; }
  .process-list div { margin-top: 0; }
  .cabinet-visual { min-height: 460px; }
  .contact-panel { width: calc(100% - 24px); padding-inline: 28px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { align-items: flex-start; flex-direction: column; gap: 10px; }
  .legal-main { padding-top: 60px; }
  .legal-nav { position: static; }
  .regulatory-section { padding: 32px 0; }
  .regulatory-panel { padding-inline: 28px; }
  .documents-hero { padding: 70px 0; }
  .documents-hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .annual-update-year { min-height: 110px; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero-inner { padding-top: 122px; }
  .eyebrow { font-size: .68rem; letter-spacing: .13em; }
  h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .button { width: 100%; }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof li { flex: 1 1 26%; }
  .portrait-frame { border-radius: 160px 160px 22px 22px; }
  .signal-card { width: 235px; padding: 14px; }
  .expertise-card { padding: 26px; }
  .format-panels { padding: 28px 24px 34px; }
  .format-tabs button { font-size: .68rem; }
  .format-heading h2, .contact-copy h2 { font-size: clamp(1.75rem, 9vw, 2.6rem); }
  .cabinet-visual { min-height: 390px; }
  .independence-seal { width: 160px; height: 160px; }
  .references-heading { gap: 26px; }
  .client-logo { width: 205px; min-height: 130px; padding: 24px; }
  .client-logo-wide { width: 245px; }
  .client-logo img { max-height: 72px; }
  .contact-section { padding-top: 20px; }
  .contact-panel { gap: 28px; padding: 40px 22px; }
  .contact-direct { margin-top: 32px; }
  .contact-form { padding: 26px 20px; border-radius: 18px; }
  .form-grid { gap: 16px; }
  .confirmation-main { padding: 40px 0; }
  .confirmation-card { padding: 34px 24px; border-radius: 22px; }
  .confirmation-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .confirmation-actions .text-link { align-self: center; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
}

@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; }
}
