:root {
    --blue-950: #031c4a;
    --blue-900: #06265f;
    --blue-800: #0a3b91;
    --blue-700: #1556bd;
    --blue-600: #2472da;
    --sky: #71b9ff;
    --yellow: #f6b300;
    --yellow-soft: #ffd568;
    --ink: #071b3d;
    --muted: #5d6b82;
    --line: rgba(10, 59, 145, .13);
    --paper: #f5f7fb;
    --white: #fff;
    --font-display: "Space Grotesk", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --container: min(1240px, calc(100vw - 64px));
    --section-pad: clamp(6rem, 10vw, 10rem);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --ease: cubic-bezier(.2, .75, .25, 1);
    --shadow-soft: 0 24px 80px rgba(4, 28, 74, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 7rem; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
::selection { color: var(--blue-950); background: var(--yellow-soft); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 1rem;
    left: 1rem;
    padding: .8rem 1rem;
    color: var(--white);
    background: var(--blue-950);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-pad); }

.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 1rem;
    color: var(--white);
    background: var(--blue-950);
    transition: visibility .7s, opacity .7s var(--ease);
}

.loader.is-hidden { visibility: hidden; opacity: 0; }
.loader p { margin: 0; font: 600 .75rem/1 var(--font-display); letter-spacing: .2em; text-transform: uppercase; }
.loader__mark { position: relative; width: 54px; height: 54px; animation: loader-rotate 1.4s linear infinite; }
.loader__mark span { position: absolute; inset: 0; border: 2px solid transparent; border-top-color: var(--yellow); border-radius: 50%; }
.loader__mark span:last-child { inset: 9px; border-top-color: rgba(255,255,255,.7); animation: loader-rotate .8s linear infinite reverse; }
@keyframes loader-rotate { to { transform: rotate(360deg); } }

.cursor-glow {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: .13;
    background: radial-gradient(circle, var(--sky) 0, transparent 68%);
    transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 50vh) - 50%), 0);
    transition: opacity .4s;
    mix-blend-mode: multiply;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    right: 0;
    left: 0;
    transition: transform .5s var(--ease);
}

.site-header.is-hidden { transform: translateY(-150%); }

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 12px 0 22px;
    background: rgba(255,255,255,.77);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 20px;
    box-shadow: 0 10px 42px rgba(4, 26, 66, .08);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    transition: background .4s, box-shadow .4s;
}

.site-header.is-scrolled .nav-shell { background: rgba(255,255,255,.93); box-shadow: 0 16px 52px rgba(4,26,66,.12); }

.brand { display: inline-flex; align-items: center; justify-content: flex-start; width: min(215px, 30vw); height: 74px; }
.brand__logo { display: block; width: auto; max-width: 215px; height: 74px; max-height: 74px; object-fit: contain; border-radius: 6px; }
.brand__logo--placeholder { opacity: .9; }
.brand__mark { width: 37px; height: 37px; fill: none; stroke: var(--blue-800); stroke-width: 4.7; stroke-linecap: round; stroke-linejoin: round; }
.brand__spark { stroke: var(--yellow); stroke-width: 2.3; }
.brand__type { display: flex; flex-direction: column; gap: 1px; }
.brand__type strong { color: var(--blue-950); font: 700 .9rem/1.1 var(--font-display); letter-spacing: -.02em; }
.brand__type small { color: var(--blue-700); font-size: .56rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.7rem); }
.main-nav a { position: relative; padding-block: .5rem; color: #30405b; font-size: .83rem; font-weight: 700; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    min-height: 54px;
    padding: .9rem 1.35rem;
    overflow: hidden;
    border-radius: 14px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: color .35s, background .35s, border-color .35s, box-shadow .35s, transform .35s var(--ease);
}

.button::before { position: absolute; inset: 0; content: ""; background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.3), transparent 75%); transform: translateX(-130%); transition: transform .7s var(--ease); }
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-3px); }
.button span, .button svg { position: relative; z-index: 1; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.button:hover svg { transform: translateX(3px); }
.button--nav { min-height: 50px; padding-inline: 1.1rem; color: var(--white); background: var(--blue-800); box-shadow: 0 8px 25px rgba(10,59,145,.2); }
.menu-toggle { display: none; width: 48px; height: 48px; background: transparent; border-radius: 12px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--blue-950); transition: transform .3s, opacity .3s; }

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: 9.5rem 0 4rem;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #fafdff 0%, #eef5ff 55%, #f8fbff 100%);
}

.hero__background { position: absolute; z-index: -1; inset: 0; overflow: hidden; }
.hero__background::before { position: absolute; inset: 0; content: ""; opacity: .28; background-image: radial-gradient(rgba(10,59,145,.17) .7px, transparent .7px); background-size: 19px 19px; mask-image: linear-gradient(to right, black, transparent 58%); }
.aurora { position: absolute; filter: blur(2px); will-change: transform; }
.aurora--one { top: -30%; right: -10%; width: 66vw; height: 95vh; opacity: .96; background: radial-gradient(ellipse at 40% 50%, rgba(34,112,218,.32), rgba(10,59,145,.08) 48%, transparent 70%); border-radius: 38% 62% 66% 34% / 42% 32% 68% 58%; animation: morph 16s ease-in-out infinite alternate; }
.aurora--two { right: -13%; bottom: -26%; width: 57vw; height: 65vh; opacity: .58; background: radial-gradient(ellipse, rgba(246,179,0,.38), rgba(246,179,0,.05) 54%, transparent 72%); border-radius: 63% 37% 46% 54% / 40% 70% 30% 60%; animation: morph 20s ease-in-out infinite alternate-reverse; }
@keyframes morph { 0% { border-radius: 38% 62% 66% 34% / 42% 32% 68% 58%; transform: rotate(-2deg) scale(1); } 100% { border-radius: 55% 45% 40% 60% / 60% 47% 53% 40%; transform: rotate(5deg) scale(1.07); } }

.hero-lines { position: absolute; right: -10%; bottom: -13%; width: 95%; height: 80%; fill: none; stroke: rgba(255,255,255,.68); stroke-width: 1.5; }
.hero-lines path { stroke-dasharray: 1800; stroke-dashoffset: 1800; animation: draw-line 3.2s 1s var(--ease) forwards; }
.hero-lines path:last-child { opacity: .6; animation-delay: 1.3s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.particle { position: absolute; width: 5px; height: 5px; opacity: .55; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 14px var(--yellow); animation: particle-float var(--duration, 8s) ease-in-out infinite var(--delay, 0s); }
@keyframes particle-float { 50% { opacity: .9; transform: translate3d(var(--drift, 20px), -35px, 0) scale(1.5); } }

.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 5vw, 6rem); }
.hero__content { position: relative; z-index: 3; max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: .7rem; color: var(--blue-700); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span:not(.eyebrow__dot) { display: grid; width: 29px; height: 29px; place-items: center; color: var(--blue-800); background: rgba(10,59,145,.08); border-radius: 50%; font-size: .58rem; letter-spacing: 0; }
.eyebrow__dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 6px rgba(246,179,0,.14); animation: pulse-dot 2.3s infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 10px rgba(246,179,0,0); } }

.hero__title { margin: 1.5rem 0 1.55rem; color: var(--blue-950); font: 600 clamp(3.45rem, 5.5vw, 6.15rem)/.88 var(--font-display); letter-spacing: -.072em; }
.title-line { display: block; padding: .08em .05em .09em 0; overflow: hidden; }
.title-line > span { display: inline-block; transform: translateY(110%); animation: title-in 1s var(--ease) forwards; }
.title-line:nth-child(2) > span { animation-delay: .1s; }
.title-line:nth-child(3) > span { animation-delay: .2s; }
.title-line:nth-child(4) > span { animation-delay: .3s; }
@keyframes title-in { to { transform: translateY(0); } }
.title-accent { position: relative; color: var(--blue-700); }
.title-accent::after { position: absolute; right: -.2em; bottom: .02em; width: .16em; height: .16em; content: ""; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 18px rgba(246,179,0,.6); }
.hero__lead { max-width: 590px; margin: 0 0 2rem; color: #516078; font-size: clamp(1rem, 1.25vw, 1.17rem); line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 2rem; }
.button--primary { min-height: 62px; padding-inline: 1.65rem; color: var(--white); background: linear-gradient(125deg, var(--blue-800), var(--blue-600)); box-shadow: 0 18px 40px rgba(10,59,145,.25), inset 0 1px rgba(255,255,255,.25); }
.button--primary:hover { box-shadow: 0 24px 50px rgba(10,59,145,.34), inset 0 1px rgba(255,255,255,.25); }
.text-link { display: inline-flex; align-items: center; gap: .9rem; font-size: .79rem; font-weight: 800; }
.text-link i { position: relative; width: 36px; height: 1px; overflow: visible; background: currentColor; transition: width .35s var(--ease); }
.text-link i::after { position: absolute; top: -3px; right: 0; width: 7px; height: 7px; content: ""; border-top: 1px solid; border-right: 1px solid; transform: rotate(45deg); }
.text-link:hover i { width: 50px; }
.text-link--blue { color: var(--blue-800); }

.hero__stats { display: flex; gap: clamp(1.5rem, 3vw, 3.4rem); margin: 3.3rem 0 0; padding: 0; }
.hero__stats div { position: relative; display: flex; align-items: center; gap: .8rem; }
.hero__stats div + div::before { position: absolute; top: 10%; bottom: 10%; left: calc(clamp(1.5rem, 3vw, 3.4rem) / -2); width: 1px; content: ""; background: var(--line); }
.hero__stats dt { color: var(--blue-800); font: 700 clamp(1.65rem, 2.5vw, 2.3rem)/1 var(--font-display); letter-spacing: -.05em; }
.hero__stats dt span { color: var(--yellow); }
.hero__stats dd { margin: 0; color: #6d7a8e; font-size: .65rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; }

.hero__visual { position: relative; min-height: min(680px, 72vh); perspective: 1000px; }
.portrait-card { position: absolute; z-index: 2; right: 6%; bottom: 2%; width: min(78%, 455px); height: 88%; overflow: hidden; background: #e6f0fc; border: 1px solid rgba(255,255,255,.88); border-radius: 48% 48% 31% 31% / 30% 30% 18% 18%; box-shadow: 0 42px 100px rgba(3,28,74,.2), inset 0 0 0 6px rgba(255,255,255,.2); transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg)); transform-style: preserve-3d; transition: transform .15s linear; }
.portrait-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(5,38,95,.26), transparent 38%); }
.portrait-card img { position: absolute; z-index: 1; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; filter: saturate(.88) contrast(1.02); }
.portrait-card__wash { position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(145deg, rgba(255,255,255,.2), transparent 45%); mix-blend-mode: screen; }
.portrait-card__reflection { position: absolute; z-index: 3; top: -30%; left: -80%; width: 45%; height: 170%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent); transform: rotate(20deg); animation: reflection 7s 2s infinite; }
@keyframes reflection { 0%, 45% { left: -80%; } 70%, 100% { left: 140%; } }
.hero__sun { position: absolute; z-index: 1; top: 10%; right: -2%; width: 250px; height: 250px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 25px rgba(246,179,0,.1), 0 0 80px rgba(246,179,0,.3); }
.portrait-orbit { position: absolute; z-index: 1; border: 1px solid rgba(10,59,145,.16); border-radius: 50%; animation: orbit 20s linear infinite; }
.portrait-orbit::after { position: absolute; top: 15%; left: 3%; width: 10px; height: 10px; content: ""; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 18px var(--yellow); }
.portrait-orbit--outer { inset: 2% -7% 0 4%; }
.portrait-orbit--inner { inset: 11% 3% 9% 13%; animation-duration: 14s; animation-direction: reverse; }
.portrait-orbit--inner::after { top: auto; right: 6%; bottom: 11%; left: auto; width: 7px; height: 7px; background: var(--sky); box-shadow: 0 0 18px var(--sky); }
@keyframes orbit { to { transform: rotate(360deg); } }
.glass { background: rgba(255,255,255,.67); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 18px 55px rgba(3,28,74,.14); backdrop-filter: blur(20px) saturate(1.35); -webkit-backdrop-filter: blur(20px) saturate(1.35); }
.floating-note { position: absolute; z-index: 5; display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; border-radius: 17px; animation: note-float 5s ease-in-out infinite; }
.floating-note--top { top: 20%; left: -4%; }
.floating-note--bottom { right: -3%; bottom: 12%; animation-delay: -2.5s; }
@keyframes note-float { 50% { transform: translateY(-10px) rotate(.5deg); } }
.floating-note__icon { display: grid; width: 35px; height: 35px; place-items: center; color: var(--white); background: var(--blue-800); border-radius: 11px; }
.floating-note__icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.floating-note > span:last-child { display: flex; flex-direction: column; }
.floating-note small { color: #728096; font-size: .58rem; }
.floating-note strong { color: var(--blue-950); font: 700 .75rem/1.2 var(--font-display); }
.signal { display: flex; align-items: end; gap: 3px; height: 24px; padding: 5px 7px; background: rgba(10,59,145,.09); border-radius: 8px; }
.signal i { width: 3px; height: 6px; background: var(--blue-700); border-radius: 3px; animation: signal 1.4s ease-in-out infinite; }
.signal i:nth-child(2) { height: 11px; animation-delay: .15s; }
.signal i:nth-child(3) { height: 15px; animation-delay: .3s; }
@keyframes signal { 50% { height: 18px; background: var(--yellow); } }
.hero__signature { position: absolute; z-index: 4; right: 0; bottom: -1%; width: 200px; fill: none; stroke: rgba(255,255,255,.88); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 4px 5px rgba(0,0,0,.15)); }
.hero__signature path { stroke-dasharray: 500; stroke-dashoffset: 500; animation: signature 2.7s 1.2s var(--ease) forwards; }
@keyframes signature { to { stroke-dashoffset: 0; } }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; display: flex; align-items: center; gap: .7rem; color: var(--blue-800); font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transform: translateX(-50%) rotate(90deg) translateX(50%); transform-origin: center; }
.scroll-cue i { position: relative; width: 34px; height: 1px; overflow: hidden; background: rgba(10,59,145,.2); }
.scroll-cue i::after { position: absolute; inset: 0; content: ""; background: var(--blue-800); animation: scroll-line 1.8s infinite; }
@keyframes scroll-line { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.trust-strip { position: relative; z-index: 3; overflow: hidden; color: var(--white); background: var(--blue-950); transform: rotate(-1deg) scale(1.02); }
.marquee { padding-block: 1.05rem; }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { white-space: nowrap; font: 600 .75rem/1 var(--font-display); letter-spacing: .11em; text-transform: uppercase; }
.marquee__track b { padding-inline: 1.8rem; color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

.biography { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%); }
.section-blob { position: absolute; pointer-events: none; }
.section-blob--bio { top: 12%; right: -10%; width: 520px; height: 520px; opacity: .45; background: radial-gradient(circle at 35% 35%, rgba(113,185,255,.22), transparent 65%); border: 1px solid rgba(10,59,145,.08); border-radius: 60% 40% 55% 45% / 48% 61% 39% 52%; animation: morph 18s infinite alternate; }
.biography__intro { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 8vw; }
.section-heading h2 { max-width: 870px; margin: 1.1rem 0 0; color: var(--blue-950); font: 600 clamp(2.55rem, 4.5vw, 5rem)/1.02 var(--font-display); letter-spacing: -.06em; }
.section-heading h2 em { position: relative; color: var(--blue-700); font-style: normal; }
.section-heading h2 em::after { position: absolute; right: 0; bottom: -.08em; left: 0; height: 7px; content: ""; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 10'%3E%3Cpath d='M3 7C80 1 190 3 297 4' fill='none' stroke='%23F6B300' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.biography__statement p { margin: 0 0 1.5rem; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.biography__bio-mark { width: auto; max-width: 200px; height: auto; margin: 0 0 1.4rem; object-fit: contain; }
.biography__bio-mark--placeholder { opacity: .85; }
.biography__body { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); margin-top: clamp(4.5rem, 8vw, 7.5rem); }
/* Polaroid-style photo: displayed on its own, with no card, frame, border
   or shadow behind it — the image (already edited in a polaroid look) sits
   directly in the layout with a gentle natural tilt. */
.portrait-polaroid { position: relative; max-width: 380px; margin: 0 auto; padding-bottom: 2rem; transform: rotate(-2.5deg); transition: transform .5s var(--ease); }
.portrait-polaroid:hover { transform: rotate(-1deg); }
.portrait-polaroid img { width: 100%; height: auto; object-fit: contain; background: transparent; }
.portrait-polaroid__caption { display: block; margin-top: 1rem; color: var(--blue-950); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.portrait-polaroid__caption em { color: var(--muted); font-style: normal; font-weight: 600; letter-spacing: .04em; text-transform: none; }
.biography__portrait blockquote { position: relative; z-index: 3; width: 80%; margin: -1.7rem 0 0 auto; padding: 1.5rem; color: var(--white); background: var(--blue-800); border-radius: 18px; box-shadow: 0 18px 50px rgba(10,59,145,.22); }
.biography__portrait blockquote svg { width: 23px; fill: var(--yellow); }
.biography__portrait blockquote p { margin: .6rem 0 0; font: 500 1.05rem/1.5 var(--font-display); }

.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before { position: absolute; top: 1.7rem; bottom: 1.7rem; left: 5.5rem; width: 1px; content: ""; background: linear-gradient(var(--blue-700), rgba(10,59,145,.08)); }
.timeline__item { position: relative; display: grid; grid-template-columns: 4.5rem 1fr; gap: 2rem; padding: 1.3rem 1rem 1.3rem 0; opacity: .55; border-radius: 18px; transition: opacity .4s, background .4s, transform .4s var(--ease); }
.timeline__item:hover, .timeline__item:focus, .timeline__item.is-active { opacity: 1; background: rgba(255,255,255,.7); transform: translateX(8px); }
.timeline__year { color: var(--blue-700); font: 700 .8rem/1.5 var(--font-display); }
.timeline__content h3 { margin: 0 0 .45rem; color: var(--blue-950); font: 600 1.15rem/1.3 var(--font-display); letter-spacing: -.025em; }
.timeline__content p { max-width: 500px; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.timeline__marker { position: absolute; z-index: 1; top: 1.62rem; left: 5.1rem; width: 13px; height: 13px; background: #fff; border: 3px solid var(--blue-700); border-radius: 50%; box-shadow: 0 0 0 5px rgba(10,59,145,.08); transition: background .3s, transform .3s; }
.timeline__item.is-active .timeline__marker, .timeline__item:hover .timeline__marker { background: var(--yellow); transform: scale(1.15); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(5rem, 8vw, 8rem); }
.glass-card { background: rgba(255,255,255,.6); border: 1px solid rgba(10,59,145,.1); box-shadow: 0 15px 50px rgba(4,28,74,.06); backdrop-filter: blur(15px); }
.value-card { position: relative; min-height: 270px; padding: clamp(1.6rem, 3vw, 2.5rem); overflow: hidden; border-radius: var(--radius-md); transition: transform .5s var(--ease), box-shadow .5s, background .5s; }
.value-card::before { position: absolute; right: -30%; bottom: -60%; width: 200px; height: 200px; content: ""; opacity: 0; background: radial-gradient(circle, rgba(113,185,255,.25), transparent 70%); transition: opacity .5s, transform .5s; }
.value-card:hover { background: rgba(255,255,255,.9); box-shadow: 0 24px 70px rgba(4,28,74,.11); transform: translateY(-8px); }
.value-card:hover::before { opacity: 1; transform: translate(-25px,-25px); }
.value-card__number { position: absolute; top: 1.5rem; right: 1.5rem; color: #9aa7ba; font: 700 .58rem/1 var(--font-display); }
.value-card svg { width: 47px; height: 47px; margin-bottom: 2.4rem; fill: none; stroke: var(--blue-700); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin: 0 0 .6rem; color: var(--blue-950); font: 600 1.35rem/1.2 var(--font-display); }
.value-card p { max-width: 260px; margin: 0; color: var(--muted); font-size: .84rem; }

.projects { overflow: hidden; color: var(--white); background: var(--blue-950); }
.projects::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.projects__glow { position: absolute; top: -15%; left: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(36,114,218,.3), transparent 67%); }
.projects .container { position: relative; z-index: 1; }
.section-heading--light .eyebrow { color: var(--sky); }
.section-heading--light .eyebrow span { color: var(--white); background: rgba(255,255,255,.09); }
.section-heading--light h2 { color: var(--white); }
.section-heading--light h2 em { color: var(--sky); }
.section-heading__row { display: flex; align-items: end; justify-content: space-between; gap: 4rem; }
.section-heading__row > p { max-width: 350px; margin: 0 0 .5rem; color: rgba(255,255,255,.57); font-size: .94rem; line-height: 1.8; }
.projects__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 4.5rem; }
.project-card { position: relative; display: grid; grid-template-columns: 1fr .76fr; min-height: 450px; padding: clamp(1.5rem, 3vw, 2.4rem); overflow: hidden; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; transition: background .5s, border-color .5s, transform .5s var(--ease); }
.project-card:hover, .project-card.is-expanded { background: rgba(255,255,255,.095); border-color: rgba(255,255,255,.2); transform: translateY(-6px); }
.project-card::after { position: absolute; right: -20%; bottom: -40%; width: 340px; height: 340px; content: ""; opacity: .25; background: radial-gradient(circle, var(--card-accent, var(--blue-600)), transparent 66%); transition: opacity .5s, transform .5s; }
.project-card:hover::after { opacity: .45; transform: translate(-20px,-20px); }
.project-card--blue { --card-accent: #2e8fff; }
.project-card--yellow { --card-accent: #f6b300; }
.project-card--sky { --card-accent: #7bc7ff; }
.project-card--navy { --card-accent: #466ec0; }
.project-card__top { position: absolute; z-index: 4; top: 1.4rem; right: 1.4rem; left: 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.project-card__number { color: rgba(255,255,255,.35); font: 600 .65rem/1 var(--font-display); }
.project-card__top button { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transition: color .35s, background .35s, transform .35s; }
.project-card__top button:hover { color: var(--blue-950); background: var(--yellow); transform: rotate(90deg); }
.project-card.is-expanded .project-card__top button { color: var(--blue-950); background: var(--yellow); transform: rotate(45deg); }
.project-card__top svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.project-card__copy { position: relative; z-index: 3; align-self: end; }
.project-card__eyebrow { display: inline-flex; margin-bottom: 1rem; color: var(--yellow-soft); font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-card__copy h3 { margin: 0 0 .9rem; font: 600 clamp(1.55rem, 2.4vw, 2.2rem)/1.08 var(--font-display); letter-spacing: -.045em; }
.project-card__copy > p { margin: 0; color: rgba(255,255,255,.58); font-size: .83rem; line-height: 1.75; }
.project-card__detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.project-card__detail p { min-height: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.73); font-size: .8rem; }
.project-card.is-expanded .project-card__detail { grid-template-rows: 1fr; }
.project-card.is-expanded .project-card__detail p { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); }
.project-card__art { position: relative; z-index: 2; align-self: center; justify-self: end; width: min(190px, 90%); aspect-ratio: 1; }
.project-card__art svg { position: absolute; z-index: 2; inset: 26%; width: 48%; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 8px 20px rgba(0,0,0,.2)); transition: transform .7s var(--ease); }
.project-card:hover .project-card__art svg { transform: scale(1.08) rotate(-3deg); }
.art-core { position: absolute; inset: 17%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.26), var(--card-accent) 90%); border-radius: 52% 48% 60% 40% / 43% 58% 42% 57%; box-shadow: inset 0 1px rgba(255,255,255,.35), 0 20px 50px rgba(0,0,0,.2); animation: morph 8s ease-in-out infinite alternate; }
.art-orbit { position: absolute; inset: 2%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; animation: orbit 12s linear infinite; }
.art-orbit::after { position: absolute; top: 10%; left: 17%; width: 8px; height: 8px; content: ""; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 16px var(--yellow); }
.projects__footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.1); }
.projects__footer p { margin: 0; color: rgba(255,255,255,.48); font-size: .8rem; }
.button--light { color: var(--blue-950); background: var(--white); }

.news { background: #fff; }
.news .section-heading__row { align-items: end; }
.news-filters { display: flex; gap: .3rem; padding: .35rem; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.news-filters button { padding: .7rem .9rem; color: #718098; background: transparent; border-radius: 10px; font-size: .66rem; font-weight: 800; transition: color .3s, background .3s, box-shadow .3s; }
.news-filters button:hover, .news-filters button.is-active { color: var(--blue-800); background: var(--white); box-shadow: 0 5px 18px rgba(4,28,74,.08); }
.news-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, auto); gap: 1rem; margin-top: 4rem; }
.news-card { position: relative; display: grid; grid-template-columns: .82fr 1fr; overflow: hidden; background: var(--paper); border: 1px solid rgba(10,59,145,.08); border-radius: 24px; transition: opacity .35s, transform .5s var(--ease), box-shadow .5s; }
.news-card.is-filtered { display: none; }
.news-card:hover { box-shadow: 0 24px 70px rgba(4,28,74,.12); transform: translateY(-6px); }
.news-card--featured { grid-row: 1 / span 2; grid-template-columns: 1fr; }
.news-card__media { position: relative; min-height: 220px; overflow: hidden; }
.news-card--featured .news-card__media { min-height: 430px; }
.news-card__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(3,28,74,.3), transparent 50%); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s; }
.news-card:hover .news-card__media img { filter: saturate(1.08); transform: scale(1.045); }
.news-card__arrow { position: absolute; z-index: 2; right: 1.2rem; bottom: 1.2rem; display: grid; width: 45px; height: 45px; place-items: center; color: var(--blue-950); background: rgba(255,255,255,.88); border-radius: 50%; backdrop-filter: blur(10px); transition: color .35s, background .35s, transform .35s; }
.news-card:hover .news-card__arrow { color: var(--white); background: var(--blue-700); transform: rotate(45deg); }
.news-card__arrow svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.news-card__featured-label { position: absolute; z-index: 2; top: 1.2rem; left: 1.2rem; padding: .55rem .75rem; color: var(--blue-950); background: var(--yellow); border-radius: 9px; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card__content { align-self: center; padding: clamp(1.3rem, 2.5vw, 2.2rem); }
.news-card__meta { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1rem; color: #718098; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card__meta span { color: var(--blue-700); }
.news-card h3 { margin: 0 0 .8rem; color: var(--blue-950); font: 600 clamp(1.25rem, 2vw, 1.8rem)/1.18 var(--font-display); letter-spacing: -.04em; }
.news-card h3 a { background: linear-gradient(currentColor, currentColor) left bottom / 0 1px no-repeat; transition: background-size .45s var(--ease); }
.news-card:hover h3 a { background-size: 100% 1px; }
.news-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.news__more { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; padding-top: 2rem; color: var(--muted); border-top: 1px solid var(--line); font-size: .77rem; }

/* ---------------- Videos page (player + grid, estilo "assista e clique") ---------------- */
.video-hero { padding-top: clamp(8.5rem, 12vw, 11rem); background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%); overflow: hidden; }

.watch-player { max-width: 900px; margin: 3.5rem auto 0; }
.watch-player__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #010a1f;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(3,28,74,.22);
}
.watch-player__frame video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.watch-player__info { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.6rem; padding-inline: .2rem; }
.watch-player__info h3 { margin: 0; color: var(--blue-950); font: 600 clamp(1.35rem, 2.4vw, 1.85rem)/1.25 var(--font-display); letter-spacing: -.025em; }
.watch-player__date { order: -1; color: var(--blue-700); font: 700 .68rem/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.watch-player__info p { margin: .3rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.8; }

.video-empty { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; max-width: 480px; margin: 3.5rem auto 0; padding: 3rem 1.5rem; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.video-empty__art { width: 140px; height: auto; opacity: .85; border-radius: 14px; }
.video-empty p { margin: 0; color: var(--muted); font-size: .95rem; }

.video-list { background: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3.5rem; }
.video-thumb { position: relative; display: flex; flex-direction: column; padding: 0; overflow: hidden; text-align: left; background: var(--paper); border: 1px solid rgba(10,59,145,.08); border-radius: 20px; transition: transform .5s var(--ease), box-shadow .5s, border-color .3s; }
.video-thumb:hover, .video-thumb:focus-visible { box-shadow: 0 20px 55px rgba(4,28,74,.12); transform: translateY(-5px); }
.video-thumb.is-playing { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(246,179,0,.25); }
.video-thumb__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #010a1f; }
.video-thumb__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-thumb:hover .video-thumb__media img { transform: scale(1.06); }
.video-thumb__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(3,28,74,.35), transparent 55%); }
.video-thumb__play { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-950); background: rgba(255,255,255,.92); border-radius: 50%; transform: translate(-50%,-50%); transition: background .3s, color .3s, transform .3s; }
.video-thumb__play svg { width: 18px; margin-left: 2px; fill: currentColor; }
.video-thumb:hover .video-thumb__play { color: var(--white); background: var(--blue-700); transform: translate(-50%,-50%) scale(1.08); }
.video-thumb__badge { position: absolute; z-index: 2; top: .6rem; left: .6rem; display: none; padding: .35rem .65rem; color: var(--blue-950); background: var(--yellow); border-radius: 999px; font: 800 .56rem/1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
.video-thumb.is-playing .video-thumb__badge { display: inline-block; }
.video-thumb.is-playing .video-thumb__play { color: var(--white); background: var(--blue-700); }
.video-thumb__content { display: flex; flex-direction: column; gap: .4rem; padding: 1rem 1.1rem 1.2rem; }
.video-thumb__title { color: var(--blue-950); font: 600 .88rem/1.35 var(--font-display); letter-spacing: -.01em; }
.video-thumb__content time { display: inline-flex; align-items: center; gap: .35rem; color: #718098; font: 700 .64rem/1 var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.video-thumb__content time::before { width: 5px; height: 5px; content: ""; background: var(--blue-700); border-radius: 50%; }


.contact { position: relative; padding-block: var(--section-pad); overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--blue-900), var(--blue-800) 60%, #1559bd); isolation: isolate; }
.contact::before { position: absolute; z-index: -1; inset: 0; content: ""; opacity: .3; background: radial-gradient(circle at 10% 20%, rgba(113,185,255,.35), transparent 30%), radial-gradient(circle at 90% 80%, rgba(246,179,0,.23), transparent 28%); }
.contact__shape { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.contact__shape--one { top: -30%; right: -15%; width: 700px; height: 700px; box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.018); }
.contact__shape--two { bottom: -40%; left: -10%; width: 480px; height: 480px; background: rgba(113,185,255,.07); }
.contact__grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.eyebrow--light { color: var(--sky); }
.eyebrow--light span { color: var(--white); background: rgba(255,255,255,.1); }
.contact__copy h2 { margin: 1.2rem 0 1.4rem; font: 600 clamp(2.8rem, 5vw, 5.4rem)/.98 var(--font-display); letter-spacing: -.065em; }
.contact__copy h2 em { color: var(--yellow); font-style: normal; }
.contact__copy > p { max-width: 480px; margin: 0; color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.85; }
.contact__channels { display: grid; gap: 1rem; margin-top: 2.5rem; }
.contact__channels > a, .contact__channels > div { display: flex; align-items: center; gap: 1rem; }
.contact__channel-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; color: var(--yellow); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
.contact__channel-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact__channels > * > span:last-child { display: flex; flex-direction: column; }
.contact__channels small { color: rgba(255,255,255,.48); font-size: .6rem; }
.contact__channels strong { font-size: .73rem; font-weight: 600; }
.social-links { display: flex; gap: .6rem; margin-top: 2rem; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font: 700 .65rem/1 var(--font-display); transition: color .3s, background .3s, transform .3s; }
.social-links a:hover { color: var(--blue-950); background: var(--yellow); transform: translateY(-4px); }

.contact-form { position: relative; padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink); background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.5); border-radius: var(--radius-lg); }
.contact-form__heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; color: var(--blue-950); font: 600 1.1rem/1 var(--font-display); }
.contact-form__heading i { height: 1px; flex: 1; background: var(--line); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-field { display: grid; gap: .55rem; margin-bottom: 1rem; }
.form-field > span { color: #4d5d74; font-size: .61rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .95rem 1rem; background: #f5f7fb; border: 1px solid transparent; border-radius: 12px; outline: 0; font-size: .78rem; transition: background .25s, border-color .25s, box-shadow .25s; }
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9ba7b7; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { background: #fff; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(36,114,218,.1); }
.contact-form__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; max-width: 260px; color: #768397; font-size: .58rem; line-height: 1.5; }
.checkbox input { margin-top: 2px; accent-color: var(--blue-700); }
.button--yellow { min-width: 165px; color: var(--blue-950); background: var(--yellow); box-shadow: 0 10px 30px rgba(246,179,0,.22); }
.form-success { position: absolute; inset: 0; display: grid; visibility: hidden; align-content: center; justify-items: center; padding: 3rem; opacity: 0; background: rgba(255,255,255,.97); border-radius: inherit; text-align: center; transition: opacity .4s, visibility .4s; }
.form-success.is-visible { visibility: visible; opacity: 1; }
.form-success svg { width: 60px; margin-bottom: 1rem; fill: none; stroke: var(--blue-700); stroke-width: 2; }
.form-success strong { color: var(--blue-950); font: 600 1.4rem var(--font-display); }
.form-success p { margin: .5rem 0 0; color: var(--muted); font-size: .8rem; }

.site-footer {
    position: relative;
    color: rgba(255,255,255,.72);
    background: #03132f url("../images/fundo_rodape.png") center center / cover no-repeat;
    background-attachment: scroll;
}
.site-footer::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(3,19,47,.86) 0%, rgba(3,19,47,.94) 100%);
    pointer-events: none;
}
.site-footer::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--yellow), var(--sky), var(--yellow));
    background-size: 200% 100%;
    animation: footer-shimmer 6s linear infinite;
}
@keyframes footer-shimmer { to { background-position: 200% 0; } }
.footer__glow { position: absolute; z-index: 0; top: -20%; left: 50%; width: 900px; max-width: 140vw; height: 460px; content: ""; pointer-events: none; opacity: .5; background: radial-gradient(ellipse at center, rgba(36,114,218,.35), transparent 68%); transform: translateX(-50%); }
.site-footer > .container { position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 2rem; padding-block: 4.5rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand--footer { width: auto; height: auto; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.brand--footer .brand__logo { width: auto; max-width: 215px; height: 100px; max-height: 100px; filter: drop-shadow(0 8px 26px rgba(0,0,0,.35)); }
.brand--footer .brand__logo--placeholder { opacity: .78; }
.brand--footer .brand__mark { stroke: var(--white); }
.brand--footer .brand__type strong { color: var(--white); }
.brand--footer .brand__type small { color: var(--sky); }
.footer__top > p { margin: 0; font: 500 .93rem/1.6 var(--font-display); }
.back-to-top { display: flex; align-items: center; gap: 1rem; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.back-to-top svg { width: 42px; height: 42px; padding: 12px; fill: none; stroke: var(--white); stroke-width: 1.5; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transition: color .3s, background .3s, transform .3s; }
.back-to-top:hover svg { color: var(--blue-950); background: var(--yellow); transform: translateY(-4px); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-block: 4rem; }
.footer__nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.footer__nav span { margin-bottom: .4rem; color: var(--white); font: 600 .69rem/1 var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.footer__nav a { color: rgba(255,255,255,.48); font-size: .72rem; transition: color .3s, transform .3s; }
.footer__nav a:hover { color: var(--yellow); transform: translateX(4px); }
.footer__socials { display: flex; gap: .65rem; padding-bottom: 2.4rem; }
.footer__socials a { display: grid; width: 42px; height: 42px; place-items: center; color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font: 700 .68rem/1 var(--font-display); transition: color .3s, background .3s, transform .3s, border-color .3s; }
.footer__socials a:hover { color: var(--blue-950); background: var(--yellow); border-color: var(--yellow); transform: translateY(-4px); }
.footer__bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.footer__bottom p { margin: 0; color: rgba(255,255,255,.32); font-size: .56rem; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.projects__grid [data-reveal]:nth-child(2), .values [data-reveal]:nth-child(2) { transition-delay: .1s; }
.projects__grid [data-reveal]:nth-child(3) { transition-delay: .15s; }
.projects__grid [data-reveal]:nth-child(4) { transition-delay: .25s; }

@media (max-width: 1100px) {
    :root { --container: min(100% - 42px, 1050px); }
    .hero__grid { grid-template-columns: 1fr .8fr; gap: 1rem; }
    .hero__title { font-size: clamp(3.3rem, 6vw, 5.2rem); }
    .hero__visual { min-height: 580px; }
    .portrait-card { right: 0; width: 90%; }
    .floating-note--top { left: -10%; }
    .project-card { grid-template-columns: 1fr .58fr; }
    .project-card__art { width: 150px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    :root { --container: min(100% - 34px, 760px); }
    .site-header { top: 10px; }
    .nav-shell { min-height: 66px; padding: 0 9px 0 16px; border-radius: 17px; }
    .main-nav { position: fixed; top: 86px; right: 17px; left: 17px; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem; opacity: 0; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); transform: translateY(-15px); transition: visibility .35s, opacity .35s, transform .35s var(--ease); }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .main-nav a { padding: 1rem; font-size: .9rem; border-bottom: 1px solid var(--line); }
    .main-nav a:last-child { border: 0; }
    .button--nav { display: none; }
    .menu-toggle { display: block; }
    .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); }
    .hero { min-height: auto; padding-top: 8rem; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__content { max-width: 650px; }
    .hero__title { font-size: clamp(3.5rem, 11vw, 6rem); }
    .hero__visual { min-height: 700px; margin-top: 1rem; }
    .portrait-card { right: 12%; width: min(76%, 480px); }
    .floating-note--top { left: 5%; }
    .floating-note--bottom { right: 4%; }
    .scroll-cue { display: none; }
    .biography__intro, .biography__body, .contact__grid { grid-template-columns: 1fr; }
    .biography__statement { max-width: 620px; }
    .biography__portrait { max-width: 520px; margin-inline: auto; }
    .values { grid-template-columns: 1fr; }
    .value-card { min-height: 220px; }
    .projects__grid { grid-template-columns: 1fr; }
    .project-card { grid-template-columns: 1fr .7fr; }
    .section-heading__row { display: grid; gap: 2rem; }
    .news-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .news-card--featured { grid-row: auto; }
    .news-card:not(.news-card--featured) { grid-template-columns: .75fr 1fr; }
    .news-card--featured .news-card__media { min-height: 380px; }
    .contact__copy { max-width: 650px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    :root { --container: calc(100% - 28px); --section-pad: 5rem; }
    .site-header .brand { width: 158px; height: 56px; }
    .site-header .brand__logo { width: auto; max-width: 158px; height: 54px !important; max-height: 54px; }
    .brand__type strong { font-size: .8rem; }
    .brand__type small { font-size: .5rem; }
    .hero { padding-top: 7.5rem; }
    .hero__title { margin-top: 1.2rem; font-size: clamp(3rem, 15vw, 4.5rem); letter-spacing: -.075em; }
    .hero__lead { font-size: .95rem; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
    .button--primary { width: 100%; }
    .hero__stats { justify-content: space-between; gap: .8rem; margin-top: 2.7rem; }
    .hero__stats div { align-items: flex-start; flex-direction: column; gap: .3rem; }
    .hero__stats div + div::before { left: -.5rem; }
    .hero__stats dd br { display: initial; }
    .hero__visual { min-height: 550px; }
    .portrait-card { right: 7%; width: 86%; height: 85%; }
    .hero__sun { top: 12%; right: -18%; width: 180px; height: 180px; }
    .portrait-orbit--outer { inset: 3% -20% 0 -4%; }
    .floating-note { padding: .65rem .8rem; }
    .floating-note--top { top: 18%; left: -2%; }
    .floating-note--bottom { right: -3%; bottom: 9%; }
    .floating-note small { font-size: .5rem; }
    .floating-note strong { font-size: .64rem; }
    .hero__signature { width: 150px; }
    .section-heading h2 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
    .biography__body { margin-top: 3.5rem; }
    .timeline { padding-left: .2rem; }
    .timeline::before { left: 3.4rem; }
    .timeline__item { grid-template-columns: 2.8rem 1fr; gap: 1.4rem; }
    .timeline__marker { left: 3rem; }
    .portrait-editorial { padding-left: 1.2rem; }
    .portrait-editorial__year { right: -.5rem; }
    .values { margin-top: 4rem; }
    .project-card { grid-template-columns: 1fr; min-height: 520px; }
    .project-card__art { position: absolute; top: 4.7rem; right: 1rem; width: 145px; opacity: .9; }
    .project-card__copy { padding-top: 15rem; }
    .projects__footer, .news__more, .footer__top, .footer__bottom { align-items: flex-start; flex-direction: column; }
    .projects__footer { display: flex; }
    .button--light { width: 100%; }
    .news-filters { width: calc(100vw - 28px); overflow-x: auto; }
    .news-filters button { white-space: nowrap; }
    .news-card:not(.news-card--featured) { grid-template-columns: 1fr; }
    .news-card__media, .news-card--featured .news-card__media { min-height: 270px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form { border-radius: 26px; }
    .contact-form__bottom { align-items: stretch; flex-direction: column; }
    .button--yellow { width: 100%; }
    .footer__top { display: flex; }
    .brand--footer .brand__logo { height: 76px; max-height: 76px; }
    .footer__nav { grid-template-columns: 1fr 1fr; }
    .footer__bottom { display: flex; }
    .biography__bio-mark { max-width: 160px; }
    .video-hero { padding-top: 6.5rem; }
    .watch-player { margin-top: 2.5rem; }
    .watch-player__frame { border-radius: 16px; }
    .video-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
    .cursor-glow { display: none; }
}

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

@media (prefers-contrast: more) {
    :root { --muted: #35445b; --line: rgba(10,59,145,.35); }
    .glass, .glass-card { backdrop-filter: none; }
}
