:root {
  --night: #0a1020;
  --night-soft: #111a2c;
  --ink: #101728;
  --paper: #f4f3ed;
  --white: #ffffff;
  --lime: #c8ff3d;
  --acid: #ddff7a;
  --teal: #087076;
  --teal-bright: #0a8d91;
  --muted: #6d7380;
  --red: #b91818;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line: rgba(16, 23, 40, 0.13);
  --radius-lg: 38px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }
::selection { color: var(--night); background: var(--lime); }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; background: transparent; z-index: 100; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--lime); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 70px;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(10, 16, 32, .72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 90;
  transition: background .3s, top .3s;
}
.site-header.scrolled { top: 10px; background: rgba(10, 16, 32, .92); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--night); border: 2px solid rgba(200,255,61,.7); }
.brand__mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand__copy strong { font-family: Manrope, sans-serif; font-size: 14px; letter-spacing: -.02em; }
.brand__copy small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .8px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 600; }
.main-nav > a:not(.nav-contact) { color: rgba(255,255,255,.64); transition: color .2s; }
.main-nav > a:not(.nav-contact):hover, .main-nav > a.active { color: white; }
.main-nav sup { margin-left: 3px; color: var(--lime); font-size: 8px; }
.nav-contact { display: inline-flex; align-items: center; gap: 14px; padding: 13px 17px; color: var(--night); background: var(--lime); border-radius: 12px; }
.nav-contact span { font-size: 16px; transition: transform .2s; }
.nav-contact:hover span { transform: translate(2px, -2px); }
.theme-toggle { height: 42px; padding: 5px 12px 5px 6px; display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; cursor: pointer; transition: color .2s, background .2s, border-color .2s; }
.theme-toggle:hover { color: white; background: rgba(255,255,255,.12); }
.theme-toggle__icon { display: grid; place-items: center; width: 30px; height: 30px; color: var(--night); background: var(--lime); border-radius: 9px; font-size: 17px; line-height: 1; }
.theme-toggle__label { font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--lime); cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--night); transition: transform .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  min-height: 820px;
  height: min(940px, 100svh);
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  color: white;
  background: var(--night);
  position: relative;
  overflow: hidden;
}
.hero__noise { position: absolute; inset: 0; opacity: .055; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"); }
.hero__grid { position: absolute; inset: 0; opacity: .04; background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, black, transparent 72%); }
.hero__intro { position: relative; z-index: 2; }
.live-label { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; margin-bottom: 30px; color: rgba(255,255,255,.7); border: 1px solid var(--line-dark); border-radius: 30px; font-size: 10px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.live-label i, .active-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,255,61,.12); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(200,255,61,0); } }
h1, h2, h3 { margin: 0; font-family: Manrope, sans-serif; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(54px, 6.7vw, 100px); font-weight: 700; line-height: .85; }
.hero h1 span { color: var(--lime); font-style: italic; font-weight: 500; }
.hero__footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 640px; margin-top: 45px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.hero__footer > p { max-width: 420px; margin: 0; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.65; }
.explore-link { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.explore-link__icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--night); background: var(--lime); border-radius: 50%; transition: transform .25s; }
.explore-link:hover .explore-link__icon { transform: translateY(5px); }
.explore-link > span:last-child { display: flex; flex-direction: column; font-size: 12px; font-weight: 700; }
.explore-link small { margin-bottom: 2px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }

.hero__stage { height: 580px; position: relative; z-index: 2; }
.stage__halo { position: absolute; left: 50%; top: 48%; border-radius: 50%; transform: translate(-50%, -50%); }
.stage__halo--one { width: 510px; height: 510px; border: 1px solid rgba(255,255,255,.12); }
.stage__halo--two { width: 390px; height: 390px; background: radial-gradient(circle at 45% 40%, #dfff75, #84b82d 65%, #536e23); box-shadow: 0 0 100px rgba(200,255,61,.15); }
.stage__monogram { position: absolute; left: 50%; top: 48%; color: rgba(10,16,32,.09); font: 800 340px/.8 Manrope, sans-serif; transform: translate(-50%, -50%); z-index: 1; }
.stage__portrait { position: absolute; left: 50%; top: 47%; width: 420px; height: 420px; border-radius: 50%; overflow: hidden; transform: translate(-50%, -50%); z-index: 2; }
.stage__portrait img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.stage-card { position: absolute; width: 184px; min-height: 130px; padding: 18px; display: flex; flex-direction: column; border-radius: 20px; box-shadow: 0 22px 55px rgba(0,0,0,.28); z-index: 4; transition: transform .3s, box-shadow .3s; }
.stage-card:hover { box-shadow: 0 30px 65px rgba(0,0,0,.38); }
.stage-card small { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .6; }
.stage-card strong { margin: 13px 0 auto; font: 800 46px/.8 Manrope, sans-serif; letter-spacing: -.07em; }
.stage-card strong sup { font-size: .45em; vertical-align: top; }
.stage-card > span { display: flex; align-items: end; justify-content: space-between; margin-top: 14px; font-size: 9px; font-weight: 700; line-height: 1.2; }
.stage-card b { font-size: 17px; }
.stage-card--mnp { left: -20px; top: 78px; color: var(--night); background: var(--lime); transform: rotate(-5deg); }
.stage-card--mnp:hover { transform: rotate(-2deg) translateY(-6px); }
.stage-card--tg2 { right: -10px; bottom: 80px; color: white; background: var(--teal); transform: rotate(5deg); }
.stage-card--tg2:hover { transform: rotate(2deg) translateY(-6px); }
.stage__caption { position: absolute; left: 50%; bottom: 0; display: flex; align-items: center; gap: 10px; white-space: nowrap; transform: translateX(-50%); }
.stage__caption::before { content: ""; width: 35px; height: 1px; background: rgba(255,255,255,.3); }
.stage__caption span { color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.stage__caption strong { font-size: 12px; }
.hero__side-note { position: absolute; right: 22px; bottom: 50%; color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right bottom; }

.project-showcase { padding: 130px max(24px, calc((100vw - 1180px) / 2)); }
.showcase-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 60px; margin-bottom: 68px; }
.section-index { display: block; margin-bottom: 24px; color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: 1.4px; }
.showcase-heading h2 { font-size: clamp(50px, 6vw, 82px); line-height: .95; }
.showcase-heading > p { max-width: 470px; margin: 0 0 5px auto; color: var(--muted); font-size: 16px; line-height: 1.7; }
.projects-stack { display: grid; gap: 34px; }
.experience { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 18px 60px rgba(16,23,40,.08); }
.experience__link { min-height: 570px; display: grid; grid-template-columns: 1.08fr .92fr; }
.experience__visual { min-height: 570px; padding: 34px; overflow: hidden; position: relative; }
.experience--mnp .experience__visual { color: var(--night); background: var(--acid); }
.experience--tg2 .experience__visual { color: white; background: var(--teal); }
.experience__number { position: absolute; top: 34px; left: 34px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.experience__number::after { content: ""; display: inline-block; width: 45px; height: 1px; margin-left: 10px; vertical-align: middle; background: currentColor; opacity: .3; }
.experience__rings { position: absolute; width: 540px; height: 540px; left: 50%; top: 51%; border: 1px solid currentColor; border-radius: 50%; opacity: .12; transform: translate(-50%, -50%); }
.experience__rings::before, .experience__rings::after { content: ""; position: absolute; inset: 60px; border: 1px solid currentColor; border-radius: 50%; }
.experience__rings::after { inset: 130px; border-style: dashed; }
.experience__word { position: absolute; left: 50%; top: 50%; font: 800 clamp(110px, 13vw, 180px)/.8 Manrope, sans-serif; letter-spacing: -.1em; white-space: nowrap; transform: translate(-50%, -50%); }
.experience__word sup { font-size: .42em; vertical-align: top; }
.institution-badge { position: absolute; left: 32px; bottom: 30px; width: 200px; min-height: 78px; padding: 9px 14px; display: flex; align-items: center; gap: 12px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 16px; box-shadow: 0 12px 35px rgba(0,0,0,.12); z-index: 2; }
.institution-badge img { width: 100px; height: 50px; object-fit: contain; }
.institution-badge span { max-width: 65px; font-size: 8px; font-weight: 700; line-height: 1.35; letter-spacing: .5px; text-transform: uppercase; }
.experience--tg2 .institution-badge img { width: 105px; }
.experience__action { position: absolute; right: 32px; bottom: 30px; display: grid; place-items: center; width: 78px; height: 78px; color: white; background: var(--night); border-radius: 50%; z-index: 2; transition: transform .3s; }
.experience--tg2 .experience__action { color: var(--night); background: var(--lime); }
.experience__action span { font-size: 30px; transition: transform .3s; }
.experience__link:hover .experience__action { transform: scale(1.08); }
.experience__link:hover .experience__action span { transform: translate(3px, -3px); }
.experience__content { padding: clamp(44px, 6vw, 78px); display: flex; flex-direction: column; background: white; }
.experience__meta { display: flex; align-items: center; justify-content: space-between; color: #8b8e96; font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.active-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 11px; color: #547000; background: #f0f9d5; border-radius: 30px; }
.active-pill i { width: 6px; height: 6px; box-shadow: none; background: #75a000; animation: none; }
.experience__eyebrow { margin: auto 0 12px; color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.experience__content h3 { font-size: clamp(42px, 4.7vw, 66px); line-height: .95; }
.experience__description { max-width: 440px; margin: 22px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.experience__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.experience__tags span { padding: 7px 10px; color: #666b76; border: 1px solid var(--line); border-radius: 30px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.experience__cta { display: none; margin-top: 28px; font-size: 12px; font-weight: 700; }

.manifesto { width: min(1180px, calc(100% - 48px)); margin: 0 auto 30px; color: white; background: var(--night); border-radius: 44px; overflow: hidden; position: relative; }
.manifesto::before { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -180px; border-radius: 50%; background: rgba(200,255,61,.07); filter: blur(2px); }
.manifesto__top { padding: 40px 50px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); }
.section-index--light { margin: 0; color: var(--lime); }
.manifesto__stamp { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.manifesto__stamp i { color: var(--lime); font-style: normal; }
.manifesto__body { min-height: 620px; padding: 65px 70px 80px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.manifesto__portrait { align-self: stretch; min-height: 450px; overflow: hidden; position: relative; border: 1px solid var(--line-dark); border-radius: 28px; }
.manifesto__portrait-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, var(--lime), #658b25 55%, #1c2830 90%); opacity: .9; }
.manifesto__portrait::after { content: "M"; position: absolute; left: 50%; top: 50%; color: rgba(10,16,32,.1); font: 800 320px/.8 Manrope; transform: translate(-50%,-50%); }
.manifesto__portrait img { position: absolute; left: 50%; top: 50%; width: 430px; height: 430px; object-fit: cover; border-radius: 50%; transform: translate(-50%,-50%); z-index: 2; }
.manifesto__portrait > span { position: absolute; left: 24px; bottom: 22px; padding: 9px 12px; color: var(--night); background: var(--lime); border-radius: 9px; font-size: 9px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; z-index: 3; }
.manifesto__copy { max-width: 580px; position: relative; z-index: 2; }
.manifesto__copy h2 { font-size: clamp(48px, 5vw, 72px); line-height: .98; }
.manifesto__copy h2 em { color: var(--lime); font-weight: 500; }
.manifesto__copy p { max-width: 540px; margin: 32px 0 38px; color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.75; }
.manifesto__copy a { display: inline-flex; align-items: center; gap: 25px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 700; }
.manifesto__copy a span { color: var(--lime); font-size: 18px; transition: transform .2s; }
.manifesto__copy a:hover span { transform: translate(3px,-3px); }
.manifesto__marquee { padding: 20px 0; overflow: hidden; color: var(--night); background: var(--lime); font: 800 15px Manrope, sans-serif; letter-spacing: 2px; white-space: nowrap; }
.manifesto__marquee div { width: max-content; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

footer { width: min(1180px, calc(100% - 48px)); margin: auto; padding: 75px 0 28px; }
.footer__main { min-height: 150px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.brand--footer { color: var(--ink); }
.brand--footer .brand__copy small { color: var(--muted); }
.footer__main > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; text-align: center; }
.footer__top { justify-self: end; display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; }
.footer__top span { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--night); border-radius: 50%; }
.footer__bottom { padding-top: 22px; display: flex; justify-content: space-between; color: #92959d; border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .7px; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Tema claro: mantém a identidade dos projetos e clareia as superfícies de navegação. */
html[data-theme="light"] body { background: #f7f6f0; }
html[data-theme="light"] .scroll-progress span { background: var(--teal-bright); }
html[data-theme="light"] .site-header {
  color: var(--ink);
  background: rgba(255,255,255,.78);
  border-color: rgba(16,23,40,.1);
  box-shadow: 0 15px 45px rgba(16,23,40,.09);
}
html[data-theme="light"] .site-header.scrolled { background: rgba(255,255,255,.94); }
html[data-theme="light"] .brand__copy small { color: rgba(16,23,40,.5); }
html[data-theme="light"] .main-nav > a:not(.nav-contact) { color: rgba(16,23,40,.62); }
html[data-theme="light"] .main-nav > a:not(.nav-contact):hover,
html[data-theme="light"] .main-nav > a.active { color: var(--ink); }
html[data-theme="light"] .theme-toggle { color: rgba(16,23,40,.72); background: rgba(16,23,40,.05); border-color: rgba(16,23,40,.1); }
html[data-theme="light"] .theme-toggle:hover { color: var(--ink); background: rgba(16,23,40,.09); }
html[data-theme="light"] .theme-toggle__icon { color: white; background: var(--teal); }
html[data-theme="light"] .hero { color: var(--ink); background: #f1f0e8; }
html[data-theme="light"] .hero__noise { opacity: .025; }
html[data-theme="light"] .hero__grid { opacity: .055; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); }
html[data-theme="light"] .live-label { color: rgba(16,23,40,.65); border-color: rgba(16,23,40,.13); }
html[data-theme="light"] .hero__footer { border-color: rgba(16,23,40,.14); }
html[data-theme="light"] .hero__footer > p { color: rgba(16,23,40,.6); }
html[data-theme="light"] .explore-link small { color: rgba(16,23,40,.48); }
html[data-theme="light"] .stage__halo--one { border-color: rgba(16,23,40,.14); }
html[data-theme="light"] .stage__caption::before { background: rgba(16,23,40,.3); }
html[data-theme="light"] .stage__caption span { color: rgba(16,23,40,.45); }
html[data-theme="light"] .stage__caption strong { color: var(--ink); }
html[data-theme="light"] .hero__side-note { color: rgba(16,23,40,.35); }
html[data-theme="light"] .manifesto { color: var(--ink); background: white; box-shadow: 0 20px 70px rgba(16,23,40,.08); }
html[data-theme="light"] .manifesto::before { background: rgba(8,112,118,.06); }
html[data-theme="light"] .manifesto__top { border-color: rgba(16,23,40,.1); }
html[data-theme="light"] .section-index--light { color: var(--teal); }
html[data-theme="light"] .manifesto__stamp { color: rgba(16,23,40,.5); }
html[data-theme="light"] .manifesto__stamp i { color: var(--teal); }
html[data-theme="light"] .manifesto__portrait { border-color: rgba(16,23,40,.1); }
html[data-theme="light"] .manifesto__copy h2 em { color: var(--teal); }
html[data-theme="light"] .manifesto__copy p { color: rgba(16,23,40,.6); }
html[data-theme="light"] .manifesto__copy a { border-color: rgba(16,23,40,.3); }
html[data-theme="light"] .manifesto__copy a span { color: var(--teal); }
html[data-theme="light"] .manifesto__marquee { color: white; background: var(--teal); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: .9fr 1.1fr; }
  .stage-card--mnp { left: 0; }.stage-card--tg2 { right: 0; }
  .experience__link { grid-template-columns: 1fr 1fr; }
  .manifesto__body { gap: 45px; padding-inline: 50px; }
}

@media (max-width: 820px) {
  .site-header { width: calc(100% - 28px); top: 12px; }
  .main-nav { position: fixed; inset: 0; padding: 130px 30px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(10,16,32,.98); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .25s; z-index: -1; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.nav-contact) { padding: 20px 0; color: white; border-bottom: 1px solid var(--line-dark); font: 600 28px Manrope, sans-serif; }
  .nav-contact { margin-top: auto; justify-content: space-between; padding: 18px 20px; }
  .theme-toggle { width: 100%; height: 54px; margin-top: 22px; padding: 7px 14px 7px 8px; justify-content: flex-start; }
  .theme-toggle__icon { width: 38px; height: 38px; }
  .theme-toggle__label { font-size: 12px; }
  html[data-theme="light"] .main-nav { background: rgba(247,246,240,.98); }
  html[data-theme="light"] .main-nav > a:not(.nav-contact) { color: var(--ink); border-color: rgba(16,23,40,.1); }
  .menu-button { display: block; position: relative; z-index: 2; }
  .hero { min-height: 1120px; height: auto; padding: 150px 24px 80px; grid-template-columns: 1fr; gap: 50px; }
  .hero__intro { max-width: 680px; }
  .hero__stage { width: min(600px, 100%); margin: auto; }
  .hero__side-note { display: none; }
  .project-showcase { padding: 100px 24px; }
  .showcase-heading { grid-template-columns: 1fr; gap: 28px; }
  .showcase-heading > p { margin-left: 0; }
  .experience__link { grid-template-columns: 1fr; }
  .experience__visual { min-height: 490px; }
  .experience__content { min-height: 480px; }
  .experience__eyebrow { margin-top: auto; }
  .experience__cta { display: block; }
  .manifesto { width: calc(100% - 32px); }
  .manifesto__body { grid-template-columns: 1fr; padding: 50px 38px 65px; }
  .manifesto__portrait { min-height: 480px; }
  .footer__main { grid-template-columns: 1fr; align-items: start; padding-bottom: 45px; }
  .footer__main > p { text-align: left; }.footer__top { justify-self: start; }
}

@media (max-width: 520px) {
  .site-header { height: 64px; padding-left: 8px; border-radius: 17px; }
  .brand__mark { width: 44px; height: 44px; }.brand__copy small { display: none; }
  .menu-button { width: 42px; height: 42px; }
  .hero { min-height: 980px; padding: 116px 17px 60px; gap: 30px; }
  .live-label { margin-bottom: 24px; font-size: 8px; }
  .hero h1 { font-size: clamp(47px, 15.5vw, 66px); }
  .hero__footer { align-items: flex-end; margin-top: 34px; }
  .hero__footer > p { font-size: 13px; }.explore-link > span:last-child { display: none; }
  .hero__stage { height: 420px; }
  .stage__halo--one { width: 350px; height: 350px; }.stage__halo--two { width: 295px; height: 295px; }
  .stage__portrait { width: 310px; height: 310px; }
  .stage__monogram { font-size: 230px; }
  .stage-card { width: 142px; min-height: 105px; padding: 14px; border-radius: 16px; }
  .stage-card strong { font-size: 36px; }.stage-card > span { font-size: 7px; }.stage-card small { font-size: 7px; }
  .stage-card--mnp { top: 26px; left: -2px; }.stage-card--tg2 { right: -1px; bottom: 30px; }
  .stage__caption { bottom: -6px; }
  .project-showcase { padding: 85px 16px; }
  .showcase-heading { margin-bottom: 44px; }.showcase-heading h2 { font-size: 48px; }.showcase-heading > p { font-size: 14px; }
  .projects-stack { gap: 20px; }.experience { border-radius: 28px; }
  .experience__visual { min-height: 360px; padding: 24px; }
  .experience__number { top: 24px; left: 24px; }
  .experience__rings { width: 340px; height: 340px; }.experience__rings::before { inset: 45px; }.experience__rings::after { inset: 95px; }
  .experience__word { font-size: 100px; }
  .institution-badge { left: 20px; bottom: 20px; width: 150px; min-height: 62px; padding: 6px 10px; }.institution-badge img { width: 84px; height: 42px; }.institution-badge span { display: none; }
  .experience__action { right: 20px; bottom: 20px; width: 60px; height: 60px; }.experience__action span { font-size: 23px; }
  .experience__content { min-height: 440px; padding: 35px 25px; }
  .experience__meta > span:last-child { display: none; }.experience__content h3 { font-size: 44px; }.experience__description { font-size: 14px; }
  .manifesto { width: calc(100% - 20px); border-radius: 30px; }
  .manifesto__top { padding: 28px 24px; }.manifesto__stamp { display: none; }
  .manifesto__body { padding: 30px 20px 50px; gap: 40px; }
  .manifesto__portrait { min-height: 350px; }.manifesto__portrait img { width: 330px; height: 330px; }
  .manifesto__copy h2 { font-size: 44px; }.manifesto__copy p { font-size: 14px; }
  footer { width: calc(100% - 34px); padding-top: 50px; }.footer__bottom { gap: 20px; }
}

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