/* ==========================================================
   NEI BRITO — CINEMATIC DIGITAL STUDIO / V2
   ========================================================== */

:root {
  --bg: #050505;
  --bg-2: #090909;
  --surface: #0e0e0e;
  --surface-2: #131313;
  --text: #f5f2ed;
  --muted: #96918a;
  --muted-2: #68645e;
  --line: rgba(255,255,255,.115);
  --line-strong: rgba(255,255,255,.2);
  --accent: #ff4f3f;
  --accent-rgb: 255,79,63;
  --shell: 1480px;
  --header: 72px;
  --radius: 30px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scrollbar-color: var(--accent) #0a0a0a;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 0%, rgba(var(--accent-rgb),.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

::selection { color: #fff; background: var(--accent); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; background: none; }
input, textarea, select { border: 0; outline: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.noise {
  position: fixed;
  z-index: 5000;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff9a80);
  box-shadow: 0 0 18px rgba(var(--accent-rgb),.65);
}

.cursor-light {
  position: fixed;
  z-index: 0;
  width: 540px;
  height: 540px;
  left: -270px;
  top: -270px;
  pointer-events: none;
  border-radius: 50%;
  opacity: .19;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.3), transparent 66%);
  filter: blur(20px);
}

.loader {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #020202;
  transition: opacity .85s ease, visibility .85s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { width: min(440px, 80vw); text-align: center; }
.loader__logo {
  margin-bottom: 26px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.12em;
  animation: loaderLogo 1.2s cubic-bezier(.16,1,.3,1) both;
}
.loader p { font-size: .72rem; font-weight: 700; letter-spacing: .45em; }
.loader small { color: var(--muted); font-size: .52rem; letter-spacing: .36em; }
.loader__bar { height: 1px; margin: 20px 0; overflow: hidden; background: rgba(255,255,255,.12); }
.loader__bar span { display: block; width: 100%; height: 100%; transform-origin: left; background: var(--accent); animation: loaderBar 1.45s cubic-bezier(.77,0,.18,1) both; }
@keyframes loaderLogo { from { opacity: 0; transform: scale(.7); filter: blur(18px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes loaderBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.header {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 50%;
  width: min(calc(100% - 32px), 1540px);
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 21px;
  background: rgba(6,6,6,.7);
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.1em;
  background: rgba(255,255,255,.035);
}
.logo__copy { font-size: .7rem; font-weight: 700; letter-spacing: .17em; }
.logo__copy small { display: block; margin-top: 3px; color: var(--muted); font-size: .45rem; letter-spacing: .24em; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  position: relative;
  color: #b9b5ae;
  font-size: .72rem;
  font-weight: 600;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 9px; }
.language { position: relative; }
.language__trigger {
  width: 48px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: .66rem;
  font-weight: 700;
}
.language__trigger i { color: var(--muted); font-style: normal; }
.language__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 70px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0d0d0d;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  transform: translateY(-6px);
  transition: .25s ease;
}
.language.is-open .language__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language__menu button { width: 100%; padding: 9px; border-radius: 8px; color: #bcb8b1; font-size: .65rem; }
.language__menu button:hover { color: #fff; background: rgba(255,255,255,.07); }

.header__cta {
  height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 17px;
  border-radius: 13px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  background: var(--accent);
}
.header__cta i { font-style: normal; }

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.menu-button span { display: block; width: 17px; height: 1px; margin: 5px auto; background: #fff; transition: .3s ease; }

.mobile-nav {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 100px 28px 42px;
  opacity: 0;
  visibility: hidden;
  background: rgba(4,4,4,.985);
  transition: .35s ease;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav a {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 11vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.06em;
}

.hero { padding-top: 104px; }
.hero__frame {
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px 38px 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 35%),
    #080808;
  isolation: isolate;
}
.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 92%);
}
.hero__glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(100px); }
.hero__glow--one { top: 5%; right: -2%; width: 500px; height: 500px; background: rgba(var(--accent-rgb),.24); }
.hero__glow--two { left: 25%; bottom: -30%; width: 440px; height: 440px; background: rgba(102,38,255,.13); }

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #75716a;
  font-size: .55rem;
  letter-spacing: .16em;
}
.availability { display: inline-flex; align-items: center; gap: 10px; }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: #78ff9b; box-shadow: 0 0 14px #78ff9b; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .45; transform: scale(.75); } }

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 5vw;
  padding: 5vh 2vw 3vh;
}
.hero__label { margin-bottom: 24px; color: #8a857e; font-size: .58rem; font-weight: 700; letter-spacing: .22em; }
.hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 8.1vw, 8.6rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.09em;
}
.hero__title > span { display: block; overflow: hidden; }
.hero__title em {
  display: inline-block;
  font-style: normal;
  animation: heroTitle 1.05s .85s cubic-bezier(.16,1,.3,1) both;
}
.hero__title > span:nth-child(2) em { animation-delay: .98s; }
.hero__title > span:nth-child(3) em { animation-delay: 1.1s; }
.hero__title--accent { color: var(--accent); padding-left: 6vw; }
@keyframes heroTitle { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: translateY(0); } }

.hero__stage { position: relative; min-height: 520px; perspective: 1400px; }
.stage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 38px 90px rgba(0,0,0,.55);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.stage-card img { height: 100%; object-fit: cover; }
.stage-card--back { width: 64%; height: 58%; top: 2%; right: 0; opacity: .48; transform: rotate(8deg) translateZ(-130px); }
.stage-card--middle { width: 70%; height: 66%; top: 18%; left: 4%; opacity: .72; transform: rotate(-6deg) translateZ(-60px); }
.stage-card--front { width: 82%; height: 75%; right: 3%; bottom: 0; transform: rotate(1.5deg); }
.hero__stage:hover .stage-card--back { transform: rotate(10deg) translate(12px,-8px) translateZ(-130px); }
.hero__stage:hover .stage-card--middle { transform: rotate(-8deg) translate(-10px,8px) translateZ(-60px); }
.hero__stage:hover .stage-card--front { transform: rotate(0deg) translateY(-5px); }
.stage-badge {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 14%;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(16px);
}
.stage-badge strong { display: block; color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; letter-spacing: -.06em; }
.stage-badge span { display: block; max-width: 80px; margin-top: 3px; color: #aaa69f; font-size: .56rem; line-height: 1.35; }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__bottom > p { width: min(570px, 100%); color: #aaa69f; font-size: clamp(.95rem, 1.2vw, 1.12rem); line-height: 1.7; }
.hero__buttons { display: flex; gap: 10px; }
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  font-size: .73rem;
  font-weight: 700;
  transition: border-color .3s ease, background .3s ease;
}
.button i { font-style: normal; }
.button--primary { border-color: var(--accent); background: var(--accent); }
.button--secondary { background: rgba(255,255,255,.035); }

.ticker { overflow: hidden; margin: 34px 0 150px; border-block: 1px solid var(--line); background: #080808; }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 32px; padding: 22px 0; animation: tickerMove 28s linear infinite; }
.ticker span { color: #aaa69f; font-family: "Space Grotesk", sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .22em; }
.ticker i { color: var(--accent); font-style: normal; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

.manifesto { padding-bottom: 180px; }
.manifesto__eyebrow { display: flex; justify-content: space-between; margin-bottom: 40px; color: #716d67; font-size: .58rem; font-weight: 700; letter-spacing: .2em; }
.manifesto__title {
  max-width: 1350px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 7.1vw, 7.7rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.075em;
}
.manifesto__foot {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
  align-items: end;
  margin-top: 65px;
}
.manifesto__foot > p { max-width: 610px; color: #9a958e; line-height: 1.8; }
.manifesto__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.manifesto__metrics div { padding-top: 20px; border-top: 1px solid var(--line); }
.manifesto__metrics strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2.3rem; font-weight: 500; letter-spacing: -.06em; }
.manifesto__metrics span { color: #77736d; font-size: .68rem; }

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 70px;
}
.eyebrow { display: block; margin-bottom: 20px; color: var(--accent); font-size: .62rem; font-weight: 700; letter-spacing: .2em; }
.section-intro h2, .process__header h2, .about__copy h2, .international__copy h2 {
  max-width: 980px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}
.section-intro > p { color: #97928b; line-height: 1.8; }

.work { padding-bottom: 180px; }
.work-list { display: grid; gap: 32px; }
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--project) 18%, transparent), transparent 35%),
    #0a0a0a;
}
.work-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: -45%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: var(--project);
  opacity: .08;
  filter: blur(100px);
}
.work-card__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 65px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  color: #6f6b65;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.case-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ccc8c1;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0;
}
.case-button i { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--project); font-style: normal; }
.work-card__body { position: relative; z-index: 1; display: grid; grid-template-columns: .62fr 1.38fr; gap: 45px; align-items: end; }
.work-card__copy { padding: 20px 0 10px 38px; }
.work-card__copy h3 { margin-bottom: 20px; font-family: "Space Grotesk", sans-serif; font-size: clamp(3.2rem, 6vw, 6.6rem); font-weight: 500; line-height: .9; letter-spacing: -.075em; }
.work-card__copy p { max-width: 520px; color: #9b968f; line-height: 1.75; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.chips span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #79756f; font-size: .5rem; font-weight: 700; letter-spacing: .12em; }
.work-card__visual {
  overflow: hidden;
  align-self: stretch;
  min-height: 590px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #060606;
  transform: perspective(1400px);
  transition: transform .25s ease;
}
.work-card__visual img { height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.work-card:hover .work-card__visual img { transform: scale(1.025); }

.services { padding-bottom: 180px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 65px 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 34px 0;
  text-align: left;
}
.accordion__trigger > span { color: #65615c; font-size: .62rem; }
.accordion__trigger h3 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.9rem, 3.3vw, 3.6rem); font-weight: 500; letter-spacing: -.05em; }
.accordion__trigger i { color: var(--accent); font-size: 1.5rem; font-style: normal; }
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.16,1,.3,1);
}
.accordion__content > * { overflow: hidden; }
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__content p { max-width: 700px; margin: 0 0 24px 85px; color: #96918a; line-height: 1.8; }
.accordion__meta { display: flex; flex-wrap: wrap; gap: 24px; margin: 0 0 35px 85px; color: #66625c; font-size: .55rem; font-weight: 700; letter-spacing: .15em; }

.industries { overflow: hidden; margin: 10px 0 170px; background: var(--accent); transform: rotate(-1deg) scale(1.01); }
.industries__track { width: max-content; display: flex; align-items: center; gap: 32px; padding: 25px 0; animation: industryMove 34s linear infinite reverse; }
.industries span { color: #100b0a; font-family: "Space Grotesk", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .14em; }
.industries i { color: rgba(0,0,0,.45); font-style: normal; }
@keyframes industryMove { to { transform: translateX(-50%); } }

.process { padding-bottom: 180px; }
.process__header { max-width: 1030px; margin-bottom: 70px; }
.process__timeline { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.process-step > span { color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 2.7rem; font-weight: 500; letter-spacing: -.07em; }
.process-step > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.process-step h3 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.8rem, 3.2vw, 3.3rem); font-weight: 500; letter-spacing: -.05em; }
.process-step p { max-width: 650px; color: #96918a; line-height: 1.8; }

.about {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
}
.about__portrait {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 60% 28%, rgba(var(--accent-rgb),.46), transparent 34%),
    radial-gradient(circle at 30% 74%, rgba(102,38,255,.18), transparent 37%),
    #0d0d0d;
}
.about__rings { position: absolute; inset: 11%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.about__rings::before, .about__rings::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.about__rings::after { inset: 28%; }
.about__portrait strong { position: relative; z-index: 1; font-family: "Space Grotesk", sans-serif; font-size: clamp(9rem, 18vw, 17rem); line-height: .6; letter-spacing: -.14em; }
.about__portrait > span { position: relative; z-index: 1; color: #bdb8b1; font-size: .55rem; font-weight: 700; line-height: 1.65; letter-spacing: .18em; }
.about__availability { width: fit-content; display: flex; align-items: center; gap: 9px; margin: 17px auto 0; color: #747069; font-size: .6rem; }
.about__availability i { width: 7px; height: 7px; border-radius: 50%; background: #78ff9b; }
.about__copy > p { margin-top: 25px; color: #9a958e; line-height: 1.85; }
.about__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 48px; }
.about__stats div { padding-top: 20px; border-top: 1px solid var(--line); }
.about__stats strong { display: block; min-height: 48px; font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 500; letter-spacing: -.06em; }
.about__stats span { color: #716d67; font-size: .65rem; line-height: 1.4; }

.international {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 50%, rgba(var(--accent-rgb),.16), transparent 32%),
    #090909;
}
.international__copy p { max-width: 600px; margin-top: 28px; color: #99948d; line-height: 1.8; }
.international__map { position: relative; min-height: 470px; }
.map-globe {
  position: absolute;
  inset: 6% 3%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%);
}
.map-globe::before, .map-globe::after { content: ""; position: absolute; inset: 15% 0; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.map-globe::after { inset: 0 22%; }
.map-point {
  position: absolute;
  z-index: 3;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  background: #111;
  box-shadow: 0 0 0 8px rgba(255,255,255,.025);
}
.map-point--br { left: 17%; bottom: 21%; background: var(--accent); }
.map-point--pt { right: 22%; top: 26%; }
.map-point--es { right: 10%; top: 43%; }
.map-line { position: absolute; z-index: 2; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.4)); }
.map-line--one { width: 50%; left: 23%; bottom: 27%; transform: rotate(-32deg); }
.map-line--two { width: 18%; right: 14%; top: 38%; transform: rotate(30deg); }

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: start;
  margin-top: 160px;
  padding: 85px 70px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb),.08), transparent 45%),
    #090909;
  isolation: isolate;
}
.contact__glow { position: absolute; z-index: -1; left: -15%; bottom: -50%; width: 760px; height: 760px; border-radius: 50%; background: rgba(var(--accent-rgb),.2); filter: blur(135px); }
.contact__heading h2 { margin-top: 22px; font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 5.8vw, 6.2rem); font-weight: 500; line-height: .94; letter-spacing: -.075em; }
.contact__heading p { max-width: 570px; margin-top: 28px; color: #96918a; line-height: 1.8; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: block; }
.contact-form label > span { display: block; margin-bottom: 9px; color: #7d7871; font-size: .62rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #e8e5df;
  background: rgba(255,255,255,.035);
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input, .contact-form select { height: 54px; padding: 0 16px; }
.contact-form textarea { min-height: 140px; resize: vertical; padding: 16px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(var(--accent-rgb),.65); background: rgba(255,255,255,.05); }
.contact-form select option { background: #111; }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form__submit {
  grid-column: 1 / -1;
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 22px;
  border-radius: 15px;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  background: var(--accent);
}
.contact-form__submit i { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #111; font-style: normal; background: #fff; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 38px 0;
  color: #625e58;
  font-size: .57rem;
  letter-spacing: .1em;
}
.footer > div:first-child { display: flex; gap: 22px; }
.footer__links { display: flex; gap: 25px; }

.case-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
}
.case-modal.is-open { opacity: 1; visibility: visible; }
.case-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(18px); }
.case-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: #0b0b0b;
  box-shadow: 0 40px 120px rgba(0,0,0,.72);
}
.case-modal__close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; color: #111; font-size: 1.6rem; background: #fff; }
.case-modal__visual { min-height: 610px; overflow: hidden; border-radius: 28px 0 0 28px; background: #060606; }
.case-modal__visual img { height: 100%; object-fit: cover; }
.case-modal__content { display: flex; flex-direction: column; justify-content: center; padding: 58px 45px; }
.case-modal__content > span { color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 2rem; }
.case-modal__content > p:first-of-type { margin-top: 24px; color: #716d67; font-size: .57rem; font-weight: 700; letter-spacing: .17em; }
.case-modal__content h2 { margin: 12px 0 20px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 500; line-height: .92; letter-spacing: -.07em; }
.case-modal__content > p:last-of-type { color: #9c978f; line-height: 1.8; }
.case-modal__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 28px 0; }
.case-modal__tags span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: #78746d; font-size: .5rem; font-weight: 700; letter-spacing: .12em; }
.case-modal__content > a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 12px 0 18px; border-radius: 14px; font-size: .72rem; font-weight: 700; background: var(--accent); }
.case-modal__content > a i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #111; font-style: normal; background: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .nav { display: none; }
  .menu-button { display: block; }
  .hero__content { grid-template-columns: 1fr; padding-top: 7vh; }
  .hero__stage { width: min(720px,100%); margin-left: auto; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; }
  .work-card__body { grid-template-columns: 1fr; }
  .work-card__copy { padding-left: 8px; }
  .work-card__visual { min-height: 520px; }
  .about { grid-template-columns: 1fr; gap: 70px; }
  .about__visual { width: min(650px,100%); }
  .international { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header: 64px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .cursor-light { display: none; }

  .header { top: 7px; width: calc(100% - 14px); height: 64px; padding: 0 8px 0 13px; border-radius: 18px; }
  .logo__copy { display: none; }
  .logo__mark { width: 39px; height: 39px; }
  .header__cta { display: none; }
  .language__trigger { width: 43px; height: 41px; }
  .menu-button { width: 41px; height: 41px; }

  .hero { padding-top: 82px; }
  .hero__frame { min-height: auto; padding: 21px 18px 22px; border-radius: 24px; }
  .hero__top > span:last-child { display: none; }
  .availability { font-size: .51rem; line-height: 1.4; }
  .hero__content { padding: 8vh 0 4vh; gap: 45px; }
  .hero__label { font-size: .52rem; }
  .hero__title { font-size: clamp(3.65rem, 20vw, 5.9rem); }
  .hero__title--accent { padding-left: 0; }
  .hero__stage { min-height: 340px; }
  .stage-card--back { width: 62%; height: 54%; }
  .stage-card--middle { width: 68%; height: 60%; }
  .stage-card--front { width: 86%; height: 70%; }
  .stage-badge { width: 100px; height: 100px; right: -5px; bottom: 8%; }
  .stage-badge strong { font-size: 1.6rem; }
  .stage-badge span { font-size: .47rem; }
  .hero__bottom { display: block; }
  .hero__bottom > p { margin-bottom: 23px; font-size: .91rem; }
  .hero__buttons { display: grid; }
  .button { width: 100%; }

  .ticker { margin: 24px 0 100px; }

  .manifesto { padding-bottom: 110px; }
  .manifesto__title { font-size: clamp(3rem, 14vw, 5rem); }
  .manifesto__foot { grid-template-columns: 1fr; gap: 48px; margin-top: 44px; }
  .manifesto__metrics { grid-template-columns: 1fr; }

  .section-intro { margin-bottom: 42px; }
  .section-intro h2, .process__header h2, .about__copy h2, .international__copy h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }

  .work, .services, .process { padding-bottom: 110px; }
  .work-list { gap: 18px; }
  .work-card { min-height: auto; padding: 18px; border-radius: 24px; }
  .work-card__head { grid-template-columns: 35px 1fr; gap: 10px; margin-bottom: 22px; }
  .case-button { grid-column: 1 / -1; justify-content: flex-end; }
  .work-card__copy h3 { font-size: 2.8rem; }
  .work-card__copy p { font-size: .87rem; }
  .work-card__visual { min-height: 360px; border-radius: 16px; }
  .work-card__visual img { object-position: center; }

  .accordion__trigger { grid-template-columns: 38px 1fr 25px; gap: 10px; padding: 28px 0; }
  .accordion__trigger h3 { font-size: 1.8rem; }
  .accordion__content p, .accordion__meta { margin-left: 48px; }
  .accordion__content p { font-size: .86rem; }
  .accordion__meta { gap: 13px; }

  .industries { margin-bottom: 110px; }

  .process-step { grid-template-columns: 55px 1fr; gap: 14px; padding: 30px 0; }
  .process-step > span { font-size: 2rem; }
  .process-step > div { grid-template-columns: 1fr; gap: 14px; }
  .process-step h3 { font-size: 1.9rem; }
  .process-step p { font-size: .86rem; }

  .about { padding-top: 90px; padding-bottom: 110px; }
  .about__portrait { min-height: 460px; padding: 24px; }
  .about__stats { grid-template-columns: 1fr; }
  .about__stats strong { min-height: auto; }

  .international { min-height: auto; padding: 52px 22px 20px; border-radius: 27px; }
  .international__map { min-height: 350px; }
  .map-point { width: 50px; height: 50px; font-size: .6rem; }

  .contact { margin-top: 110px; padding: 55px 20px; border-radius: 27px; }
  .contact__heading h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__wide, .contact-form__submit { grid-column: auto; }

  .footer { flex-direction: column; align-items: flex-start; }
  .footer > div:first-child, .footer__links { flex-direction: column; gap: 8px; }

  .case-modal { padding: 9px; }
  .case-modal__panel { grid-template-columns: 1fr; max-height: calc(100svh - 18px); border-radius: 22px; }
  .case-modal__visual { min-height: 340px; border-radius: 22px 22px 0 0; }
  .case-modal__content { padding: 34px 23px 26px; }
  .case-modal__close { top: 10px; right: 10px; }
}

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