/* ==========================================================================
   WeFight — design tokens, reset, base
   ========================================================================== */
:root{
  --bg: #080809;
  --bg-2: #0D0D0F;
  --card: #101012;
  --footer-bg: #060607;
  --light: #EAE6DE;
  --text-light: #F4F1EC;
  --text-dark: #0A0A0B;
  --text-dark-2: #0C0C0D;
  --red: #A82318;
  --red-hi: #CE3E2B;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-wipe: cubic-bezier(.7,0,.2,1);
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body{
  margin: 0;
  background: var(--bg);
  color: var(--text-light);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a{
  color: var(--text-light);
  text-decoration: none;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}
a:hover{ color: var(--red-hi); }
::selection{ background: var(--red); color: var(--text-light); }
h1,h2,h3,h4,p{ margin: 0; }
img{ display: block; max-width: 100%; }
button{ font: inherit; background: none; border: 0; cursor: pointer; }
.wrap{ max-width: 1500px; margin: 0 auto; }

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

/* ==========================================================================
   Shared bits: kickers, diamonds, mono labels, buttons, rules, cues
   ========================================================================== */
.mono-label{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(244,241,236,.55);
}
.mono-dark{ color: rgba(10,10,11,.7); }
.c-accent{ color: var(--red); }
.c-accent2{ color: var(--red-hi); }

.diamond{ width: 9px; height: 9px; background: var(--red); transform: rotate(45deg); flex: none; }
.diamond-sm{ width: 7px; height: 7px; }
.diamond-xs{ width: 6px; height: 6px; }
.diamond-dark{ background: var(--text-dark); }

.dot{ width: 7px; height: 7px; background: var(--red); opacity: .22; transform: rotate(45deg); transition: opacity .4s, transform .4s; }
.dot.is-active{ opacity: 1; transform: scale(1.05) rotate(45deg); }

.rule-sm{ width: 26px; height: 2px; background: var(--red); }

.cue{ width: 1px; height: 36px; background: var(--red-hi); transform-origin: top; animation: cue 2.2s ease-in-out infinite; }
.cue-dark{ background: var(--text-dark); }
@keyframes cue{ 0%,100%{ transform: scaleY(.25); opacity: .35; } 50%{ transform: scaleY(1); opacity: 1; } }

.act-kicker{ display: flex; align-items: center; gap: 12px; justify-content: center; }

.eyebrow{ display: flex; align-items: center; gap: 14px; }

.outline-dark{ color: transparent; -webkit-text-stroke: 2px var(--text-dark-2); }
.outline-onred{ color: transparent; -webkit-text-stroke: 3px var(--text-dark); }
.dot-white{ color: var(--text-light); }

.btn{
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  font-size: 13px; padding: 19px 28px; border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow{ font-weight: 400; }
.btn-primary{ background: var(--red); color: var(--text-light); padding: 20px 30px; }
.btn-primary:hover{ background: var(--red-hi); color: var(--text-light); transform: translateY(-2px); }
.btn-outline{ border-color: rgba(244,241,236,.32); color: var(--text-light); }
.btn-outline:hover{ border-color: var(--red-hi); color: var(--red-hi); }
.btn-dark{ background: var(--text-dark); color: var(--text-light); padding: 20px 30px; }
.btn-dark:hover{ background: #1C1C20; color: var(--text-light); }
.btn-outline-dark{ border-color: rgba(10,10,11,.5); color: var(--text-dark); font-weight: 700; }
.btn-outline-dark:hover{ background: rgba(10,10,11,.08); color: var(--text-dark); }
.btn-cut{ clip-path: polygon(14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 14px); }
.btn-sm{ font-size: 12px; padding: 15px 24px; clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px); }

/* keyframes shared */
@keyframes wipeIn{ from{ clip-path: inset(0 100% 0 0); } to{ clip-path: inset(0 0 0 0); } }
@keyframes heroIn{ from{ opacity: 0; transform: translateY(46px); } to{ opacity: 1; transform: none; } }
@keyframes marquee{ to{ transform: translateX(-50%); } }
@keyframes drift{ from{ transform: scale(1.03) rotate(-1deg); } to{ transform: scale(1.15) rotate(1.5deg); } }
@keyframes fadeUp{ from{ opacity: .001; transform: translateY(48px); } to{ opacity: 1; transform: none; } }
@keyframes growX{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
@keyframes slideL{ from{ transform: translateX(4%); } to{ transform: translateX(-30%); } }
@keyframes letterIn{ from{ opacity: 0; transform: translateY(34px) skewY(5deg); } to{ opacity: 1; transform: none; } }
@keyframes introBar{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
@keyframes wordUp{ from{ opacity: 0; transform: translateY(70px) skewY(4deg); } to{ opacity: 1; transform: none; } }
@keyframes lineIn{ from{ opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(26px); } to{ opacity: 1; clip-path: inset(0 0 -20% 0); transform: none; } }
@keyframes growY{ from{ transform: scaleY(0); } to{ transform: scaleY(1); } }

.reveal{ animation: fadeUp .9s var(--ease-out) both; animation-timeline: view(); animation-range: entry 0% entry 45%; }
@supports not (animation-timeline: view()){ .reveal{ animation: none; opacity: 1; } }

/* ==========================================================================
   Progress bar / Intro / WhatsApp
   ========================================================================== */
.progress-bar{
  position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--red);
  transform-origin: 0 50%; z-index: 80;
  animation: growX 1s linear both; animation-timeline: scroll(root);
}
@supports not (animation-timeline: scroll(root)){ .progress-bar{ display: none; } }

.intro{
  position: fixed; inset: 0; z-index: 100; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: transform .75s var(--ease-wipe);
}
.intro.is-out{ transform: translateY(-102%); }
.intro.is-off{ display: none; }
.intro-logo{
  position: relative; width: 74px; height: 74px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(244,241,236,.2);
  animation: letterIn .7s var(--ease-out) both .05s;
}
.intro-logo img{ position: absolute; width: 146%; height: 146%; max-width: none; left: -23%; top: -23%; object-fit: cover; }
.intro-word{ display: flex; gap: 2px; font-weight: 900; font-stretch: 125%; font-size: clamp(2.4rem,7vw,4.4rem); letter-spacing: .04em; line-height: 1; }
.intro-word span{ display: inline-block; animation: letterIn .6s var(--ease-out) both; }
.intro-bar{ width: 170px; height: 2px; background: rgba(244,241,236,.15); overflow: hidden; }
.intro-bar span{ display: block; width: 100%; height: 100%; background: var(--red); transform-origin: 0 50%; animation: introBar 1.1s var(--ease-wipe) both .2s; }
.intro-tag{ font-family: var(--font-mono); font-size: 10px; letter-spacing: .4em; color: rgba(244,241,236,.5); animation: letterIn .6s both .5s; }
@media (prefers-reduced-motion: reduce){ .intro{ display: none; } }

.wa-btn{
  position: fixed; right: clamp(16px,2.5vw,32px); bottom: clamp(16px,2.5vw,32px); z-index: 70;
  display: flex; align-items: center; justify-content: center;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-btn svg{
  width: clamp(46px,7vw,58px); height: clamp(46px,7vw,58px);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.5));
  transition: transform .3s ease;
}
.wa-btn:hover svg{ transform: scale(1.08); }
@keyframes waFloat{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce){ .wa-btn{ animation: none; } }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px clamp(16px,4vw,48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}
.nav.is-scrolled{
  padding: 10px clamp(16px,4vw,48px);
  background: rgba(8,8,9,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,241,236,.08);
}
.nav-brand{ display: flex; align-items: center; gap: 13px; }
.nav-logo{ position: relative; width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(244,241,236,.16); }
.nav-logo img{ position: absolute; width: 146%; height: 146%; max-width: none; left: -23%; top: -23%; object-fit: cover; }
.nav-word{ display: flex; flex-direction: column; line-height: 1; }
.nav-title{ font-weight: 900; font-stretch: 125%; font-size: 16px; letter-spacing: .08em; }
.nav-est{ font-family: var(--font-mono); font-size: 8px; letter-spacing: .36em; color: rgba(244,241,236,.55); margin-top: 5px; }
.nav-links{ display: flex; align-items: center; gap: clamp(16px,2.4vw,32px); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; }
.nav-burger{ display: none; width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(244,241,236,.22); }
.nav-burger span{ width: 20px; height: 2px; background: var(--text-light); }
.nav-burger span:last-child{ background: var(--red); }

.mobile-menu{
  position: fixed; inset: 0; z-index: 49; background: rgba(6,6,7,.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  padding: 100px clamp(24px,7vw,48px) 48px;
  overflow-y: auto;
}
.mobile-menu.is-open{ display: flex; }
.mobile-menu a{
  font-weight: 900; font-stretch: 125%; font-size: clamp(30px,8.5vw,44px);
  padding: 10px 0; border-bottom: 1px solid rgba(244,241,236,.1);
}
.mobile-menu-cta{
  display: inline-flex !important; margin-top: 24px; background: var(--red); color: var(--text-light) !important;
  padding: 20px 28px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .2em; font-weight: 600;
  border-bottom: none !important;
  clip-path: polygon(12px 0,100% 0,100% calc(100% - 12px),calc(100% - 12px) 100%,0 100%,0 12px);
  width: max-content;
}
.mobile-menu-info{ margin-top: 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: rgba(244,241,236,.5); line-height: 2; }

@media (max-width: 880px){
  .nav-links{ display: none; }
  .nav-burger{ display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--bg);
  view-timeline-name: --hero;
}
.hero-glow{
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(90% 70% at 76% 40%, rgba(168,35,24,.16), transparent 62%), linear-gradient(180deg,var(--bg-2) 0%, var(--bg) 100%);
}
.hero-logo-drift{
  position: absolute; right: -6%; top: 50%; transform: translateY(-54%);
  width: min(64vw,640px); aspect-ratio: 1; z-index: 0;
}
.hero-logo-drift img{
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; opacity: .26;
  animation: drift 20s ease-in-out infinite alternate;
  -webkit-mask-image: radial-gradient(closest-side, black 42%, transparent 76%);
  mask-image: radial-gradient(closest-side, black 42%, transparent 76%);
}
.hero-video{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  filter: saturate(.85) contrast(1.08) brightness(.7);
}
.hero-scrim{
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,9,.72) 0%, rgba(8,8,9,.08) 32%, rgba(8,8,9,.42) 58%, rgba(8,8,9,.97) 92%),
              radial-gradient(120% 90% at 12% 88%, rgba(8,8,9,.85), transparent 55%);
}
.hero-dim{ position: absolute; inset: 0; z-index: 2; pointer-events: none; background: var(--bg); opacity: 0; }
@supports (animation-timeline: view()){
  .hero-dim{ animation: dimIn 1s both; animation-timeline: --hero; animation-range: exit 5% exit 95%; }
}
@keyframes dimIn{ from{ opacity: 0; } to{ opacity: .88; } }

.hero-content{
  position: relative; z-index: 3; width: 100%; max-width: 1500px; margin: 0 auto;
  padding: 120px clamp(20px,4.5vw,56px) clamp(30px,5vh,56px);
  display: flex; flex-direction: column; gap: clamp(18px,2.8vh,30px);
}
@supports (animation-timeline: view()){
  .hero-content{ animation: heroOut 1s both; animation-timeline: --hero; animation-range: exit 0% exit 78%; }
}
@keyframes heroOut{ from{ opacity: 1; transform: none; } to{ opacity: 0; transform: translateY(-10vh); } }

.hero-in{ animation: heroIn .9s var(--ease-out) both; }
.kicker{ display: flex; align-items: center; gap: 14px; }
.hero-h1{
  font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .9; letter-spacing: -.015em;
  font-size: clamp(3rem,10.6vw,9.6rem);
}
.hero-h1 .wipe{ display: block; animation: wipeIn .8s var(--ease-wipe) both; }
.hero-h1 .outline{ color: transparent; -webkit-text-stroke: 2px rgba(244,241,236,.96); }
.hero-row{ display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.hero-p{ max-width: 520px; font-size: clamp(15px,1.3vw,17px); line-height: 1.65; color: rgba(244,241,236,.78); text-wrap: pretty; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; }
.hero-foot{
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(244,241,236,.14); padding-top: 18px;
}
.hero-scroll{ display: flex; align-items: center; gap: 12px; }
.hero-coords{ letter-spacing: .22em; }

@media (max-width: 640px){
  .hero-content{ padding-top: 100px; }
  .hero-row{ align-items: flex-start; }
}

/* ==========================================================================
   Ticker
   ========================================================================== */
.ticker{
  position: relative; z-index: 5; transform: rotate(-1.4deg) scale(1.03);
  margin: -14px 0 -20px; background: var(--red); overflow: hidden; padding: 14px 0;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.ticker-track{ display: flex; width: max-content; animation: marquee 24s linear infinite; }
.ticker-set{
  display: flex; align-items: center; gap: 32px; padding-right: 32px;
  font-weight: 900; font-stretch: 125%; font-size: 15px; letter-spacing: .16em; color: var(--text-dark); white-space: nowrap;
}
.dot-sep{ font-size: 9px; }
@media (max-width: 640px){
  .ticker-set{ font-size: 12px; gap: 22px; padding-right: 22px; }
}

/* ==========================================================================
   A Academia — pinned scroll-story scene
   ========================================================================== */
.acad-scene{ position: relative; background: var(--light); color: var(--text-dark-2); view-timeline-name: --acad; height: 400vh; }
.acad-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; }
.acad-bgtext{
  position: absolute; top: 5%; left: 0; white-space: nowrap;
  font-weight: 900; font-stretch: 125%; font-size: clamp(5rem,17vw,16rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(12,12,13,.12); user-select: none; pointer-events: none;
}
@supports (animation-timeline: view()){
  .acad-bgtext{ animation: panX 1s linear both; animation-timeline: --acad; animation-range: contain 0% contain 100%; }
}
@keyframes panX{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.scene-rail{
  position: absolute; left: clamp(14px,3vw,40px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 6;
}
.vertical{ writing-mode: vertical-rl; }
.rail-track{ width: 2px; height: 120px; background: rgba(12,12,13,.15); overflow: hidden; }
.rail-fill{ width: 100%; height: 100%; background: var(--red); transform-origin: 0 0; }
@supports (animation-timeline: view()){
  .rail-fill{ animation: growY 1s linear both; animation-timeline: --acad; animation-range: contain 0% contain 100%; }
}

.acad-act{
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: clamp(16px,3vh,26px); padding: 0 clamp(20px,6vw,60px); pointer-events: none;
}
.acad-act-1{ z-index: 2; }
.acad-act-2{ z-index: 3; }
.acad-act-3{ z-index: 4; }
@supports (animation-timeline: view()){
  .acad-act-1{ animation: actOut 1s both; animation-timeline: --acad; animation-range: contain 22% contain 30%; }
  .acad-act-2{ animation: actOut 1s both; animation-timeline: --acad; animation-range: contain 55% contain 63%; }
}
@keyframes actOut{ from{ opacity: 1; transform: none; } to{ opacity: 0; transform: translateY(-9vh) scale(.97); } }

.acad-h2{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .9; letter-spacing: -.015em; font-size: clamp(3.2rem,11vw,10rem); }
.acad-h2 .word, .com-h2 .word{ display: block; }
@supports (animation-timeline: view()){
  .acad-act-1 .act-kicker{ animation: wordUp 1s both; animation-timeline: --acad; animation-range: entry 70% contain 3%; }
  .acad-h2 .word:nth-child(1){ animation: wordUp 1s both; animation-timeline: --acad; animation-range: entry 85% contain 6%; }
  .acad-h2 .word:nth-child(2){ animation: wordUp 1s both; animation-timeline: --acad; animation-range: contain 2% contain 9%; }
  .acad-h2 .word:nth-child(3){ animation: wordUp 1s both; animation-timeline: --acad; animation-range: contain 5% contain 12%; }
  .acad-act-1 > .act-kicker:last-child{ animation: wordUp 1s both; animation-timeline: --acad; animation-range: contain 9% contain 15%; }
}

.acad-act2-label{ position: absolute; top: 9%; left: 0; right: 0; text-align: center; letter-spacing: .32em; }
@supports (animation-timeline: view()){
  .acad-act2-label{ animation: wordUp 1s both; animation-timeline: --acad; animation-range: contain 27% contain 33%; }
}

.acad-photo{ position: absolute; box-shadow: 0 34px 70px rgba(12,12,13,.28); pointer-events: auto; margin: 0; }
.acad-photo img{ width: 100%; height: 100%; object-fit: cover; }
.acad-photo figcaption{ position: absolute; left: 0; bottom: -26px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .28em; color: rgba(12,12,13,.6); white-space: nowrap; }
.acad-photo-a{ left: clamp(12px,8vw,140px); bottom: 9%; width: min(46vw,560px); aspect-ratio: 4/3; }
.acad-photo-b{ right: clamp(12px,8vw,140px); top: 13%; width: min(34vw,430px); aspect-ratio: 3/4; }
.acad-photo-c{ left: 44%; bottom: 26%; width: min(27vw,350px); aspect-ratio: 1/1; }
@keyframes flyA{ from{ opacity: 0; transform: translate(-26vw,55vh) rotate(-16deg); } to{ opacity: 1; transform: rotate(-4deg); } }
@keyframes flyB{ from{ opacity: 0; transform: translate(24vw,60vh) rotate(14deg); } to{ opacity: 1; transform: rotate(3deg); } }
@keyframes flyC{ from{ opacity: 0; transform: translateY(65vh) rotate(-9deg); } to{ opacity: 1; transform: rotate(-1.5deg); } }
@supports (animation-timeline: view()){
  .acad-photo-a{ animation: flyA 1s both; animation-timeline: --acad; animation-range: contain 26% contain 36%; }
  .acad-photo-b{ animation: flyB 1s both; animation-timeline: --acad; animation-range: contain 30% contain 40%; }
  .acad-photo-c{ animation: flyC 1s both; animation-timeline: --acad; animation-range: contain 34% contain 44%; }
}

.acad-h3{ font-weight: 800; font-stretch: 118%; letter-spacing: -.015em; line-height: 1.14; font-size: clamp(1.7rem,4.8vw,3.8rem); max-width: 1050px; }
.acad-h3 .line{ display: block; }
@supports (animation-timeline: view()){
  .acad-act-3 > .mono-label{ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 60% contain 66%; }
  .acad-h3 .line:nth-child(1){ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 62% contain 70%; }
  .acad-h3 .line:nth-child(2){ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 66% contain 74%; }
  .acad-h3 .line:nth-child(3){ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 70% contain 78%; }
  .acad-h3 .line:nth-child(4){ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 74% contain 82%; }
  .acad-act-3 > .act-kicker{ animation: lineIn 1s both; animation-timeline: --acad; animation-range: contain 80% contain 88%; }
}

@supports not (animation-timeline: view()){
  .acad-scene{ height: auto; min-height: 100svh; }
  .acad-stage{ position: relative; height: auto; display: flex; flex-direction: column; gap: 60px; padding: 90px 0; }
  .acad-bgtext{ display: none; }
  .scene-rail{ display: none; }
  .acad-act{ position: relative; inset: auto; pointer-events: auto; }
  .acad-photo{ position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; margin: 10px auto !important; }
  .acad-act-2{ display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 60px 24px; position: relative; }
}

@media (max-width: 760px){
  .acad-photo-a{ width: min(70vw,340px); left: 6%; bottom: auto; top: 6%; }
  .acad-photo-b{ width: min(52vw,260px); right: 6%; top: auto; bottom: 30%; }
  .acad-photo-c{ width: min(46vw,230px); left: 30%; bottom: 4%; }
}

/* ==========================================================================
   Pilares
   ========================================================================== */
.pilares{ background: var(--light); color: var(--text-dark-2); padding: clamp(56px,7vw,100px) clamp(20px,4.5vw,56px) clamp(80px,10vw,140px); }
.pilar{
  display: grid; grid-template-columns: clamp(56px,7vw,110px) 1fr; gap: clamp(14px,3vw,40px);
  border-top: 2px solid var(--text-dark-2); padding: clamp(22px,3vw,34px) 0; align-items: start;
  transition: background .35s;
}
.pilar:hover{ background: rgba(168,35,24,.05); }
.pilar-last{ border-bottom: 2px solid var(--text-dark-2); }
.pilar-num{ font-weight: 900; font-stretch: 125%; font-size: clamp(2rem,4vw,3.4rem); line-height: .9; color: transparent; -webkit-text-stroke: 1.5px rgba(12,12,13,.8); }
.pilar-body{ display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr)); gap: 10px clamp(24px,4vw,56px); align-items: start; }
.pilar-body h3{ font-weight: 800; font-stretch: 120%; text-transform: uppercase; font-size: clamp(1.2rem,2.2vw,1.7rem); letter-spacing: .04em; line-height: 1.15; }
.pilar-body p{ font-size: 15px; line-height: 1.7; color: rgba(12,12,13,.62); text-wrap: pretty; max-width: 560px; }
.stats{ display: flex; flex-wrap: wrap; gap: clamp(24px,5vw,72px); align-items: baseline; margin-top: clamp(40px,5vw,64px); }
.stat{ display: flex; align-items: baseline; gap: 12px; }
.stat-num{ font-weight: 900; font-stretch: 125%; font-size: clamp(2rem,3.4vw,3rem); line-height: 1; color: var(--text-dark-2); }
.stat .mono-label{ color: rgba(12,12,13,.55); }

/* ==========================================================================
   Strip
   ========================================================================== */
.strip{ background: var(--bg); overflow: hidden; padding: clamp(28px,4vw,52px) 0; border-bottom: 1px solid rgba(244,241,236,.07); }
.strip-track{
  display: flex; gap: clamp(28px,4vw,56px); width: max-content; white-space: nowrap; align-items: center;
  animation: slideL 1s linear both; animation-timeline: view(); animation-range: cover 0% cover 100%;
}
@supports not (animation-timeline: view()){ .strip-track{ animation: none; } }
.strip-word{ font-weight: 900; font-stretch: 125%; font-size: clamp(3.4rem,9vw,8.4rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(244,241,236,.3); }
.strip-dot{ color: var(--red); font-size: clamp(1.2rem,2.4vw,2rem); }

/* ==========================================================================
   Modalidades — pinned scene
   ========================================================================== */
.mods-scene{ position: relative; background: var(--bg); view-timeline-name: --mods; }
.mods-stage{ position: relative; background: var(--bg); }
.mods-rail{ display: none; z-index: 8; }
.mods-slide{ position: relative; display: flex; align-items: center; border-top: 1px solid rgba(244,241,236,.1); }
.mods-cover{ display: none; }

@keyframes coverUp{ from{ transform: translateY(0); } to{ transform: translateY(-103%); } }
@keyframes modSlide{ 0%{ opacity: 0; transform: translateY(13vh); pointer-events: none; } 16%{ opacity: 1; transform: none; pointer-events: auto; } 84%{ opacity: 1; transform: none; pointer-events: auto; } 100%{ opacity: 0; transform: translateY(-11vh); pointer-events: none; } }
@keyframes modSlideEnd{ 0%{ opacity: 0; transform: translateY(13vh); pointer-events: none; } 16%{ opacity: 1; transform: none; pointer-events: auto; } 100%{ opacity: 1; transform: none; pointer-events: auto; } }
@keyframes dotOn{ from{ opacity: .22; transform: scale(.8) rotate(45deg); } to{ opacity: 1; transform: scale(1) rotate(45deg); } }

.mods-scene{ height: auto; }
@supports (animation-timeline: view()){
  .mods-scene{ height: 780vh; }
  .mods-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; }
  .mods-cover{
    display: flex; position: absolute; inset: 0; z-index: 9; background: var(--red);
    flex-direction: column; align-items: center; justify-content: center; gap: clamp(18px,3vh,30px);
    padding: 0 20px; text-align: center;
    animation: coverUp 1s var(--ease-wipe) both; animation-timeline: --mods; animation-range: entry 55% contain 3%;
  }
  .mods-slide{ position: absolute; inset: 0; border: none; animation: modSlide 1s linear both; animation-timeline: --mods; }
  .mods-slide[data-mods-slide="1"]{ animation-range: contain 2% contain 19%; }
  .mods-slide[data-mods-slide="2"]{ animation-range: contain 18% contain 35%; }
  .mods-slide[data-mods-slide="3"]{ animation-range: contain 34% contain 51%; }
  .mods-slide[data-mods-slide="4"]{ animation-range: contain 50% contain 67%; }
  .mods-slide[data-mods-slide="5"]{ animation-range: contain 66% contain 83%; }
  .mods-slide[data-mods-slide="6"]{ animation-name: modSlideEnd; animation-range: contain 82% contain 98%; }
  [data-mods-dot="1"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 2% contain 5%; }
  [data-mods-dot="2"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 18% contain 21%; }
  [data-mods-dot="3"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 34% contain 37%; }
  [data-mods-dot="4"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 50% contain 53%; }
  [data-mods-dot="5"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 66% contain 69%; }
  [data-mods-dot="6"]{ animation: dotOn 1s both; animation-timeline: --mods; animation-range: contain 82% contain 85%; }
  @media (min-width: 980px){ .mods-rail{ display: flex; position: absolute; left: clamp(14px,3vw,40px); top: 50%; transform: translateY(-50%); flex-direction: column; align-items: center; gap: 12px; } }
}
@supports not (animation-timeline: view()){
  .mods-slide{ padding: 40px 0; }
}

.mods-num{ position: absolute; bottom: -8%; font-weight: 900; font-stretch: 125%; font-size: clamp(11rem,30vw,26rem); line-height: .8; color: transparent; -webkit-text-stroke: 2px rgba(244,241,236,.07); user-select: none; pointer-events: none; }
.mods-num-r{ right: -2%; }
.mods-num-l{ left: -3%; top: -10%; bottom: auto; }
.mods-inner{
  position: relative; width: 100%; max-width: 1500px; margin: 0 auto;
  padding: clamp(52px,8svh,96px) clamp(24px,6vw,88px) clamp(14px,2.5svh,28px);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px,4vw,72px);
}
.mods-copy{ flex: 1.15 1 400px; min-width: min(100%,320px); display: flex; flex-direction: column; gap: clamp(9px,1.6svh,18px); }
.mods-title{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.015em; line-height: .92; font-size: min(clamp(2.4rem,6.6vw,5.8rem),8.5svh); overflow-wrap: break-word; }
.mods-desc{ font-size: clamp(14px,1.15vw,16px); line-height: 1.6; color: rgba(244,241,236,.72); max-width: 560px; text-wrap: pretty; }
.chips{ display: flex; flex-wrap: wrap; gap: 8px; }
.chip{ font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; border: 1px solid rgba(244,241,236,.24); padding: 7px 12px; color: rgba(244,241,236,.72); }
.sched{ max-width: 560px; }
.sched-title{ margin-bottom: 2px; }
.sched-row{
  display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed rgba(244,241,236,.18);
  padding: 7px 0; font-family: var(--font-mono); font-size: 11px;
}
.sched-row span:first-child{ color: rgba(244,241,236,.65); }
.sched-row.wrap-row{ flex-wrap: wrap; }
.mods-media{ flex: 1 1 320px; min-width: min(100%,280px); max-width: 660px; height: clamp(150px,32svh,460px); box-shadow: 0 34px 70px rgba(0,0,0,.5); overflow: hidden; }
.mods-media img{ width: 100%; height: 100%; object-fit: cover; }

.mods-cover-title{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .88; font-size: clamp(3.2rem,12.5vw,11rem); color: var(--text-dark); }
@supports not (animation-timeline: view()){
  .mods-cover{ display: flex; position: relative; padding: clamp(60px,10vh,110px) 20px; }
}

@media (max-width: 640px){
  .mods-num{ font-size: clamp(6rem,26vw,11rem); opacity: .5; }
  .mods-title{ font-size: clamp(1.3rem,6.2vw,5.8rem); }
}

/* ==========================================================================
   A Casa — horizontal gallery pinned scene
   ========================================================================== */
.casa-scene{ position: relative; background: var(--light); color: var(--text-dark-2); view-timeline-name: --casa; }
.casa-stage{ position: relative; }
.casa-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: clamp(60px,8.5svh,100px) clamp(20px,4.5vw,56px) 0; }
.casa-h2{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .92; letter-spacing: -.015em; font-size: clamp(2.2rem,5.4vw,4.6rem); margin-top: 16px; }
.casa-dots{ display: flex; align-items: center; gap: 10px; padding-bottom: 10px; flex-wrap: wrap; }
.casa-dots-label{ margin-left: 8px; }
.casa-track{ display: flex; flex-wrap: wrap; gap: clamp(18px,2.5vw,36px); padding: clamp(12px,2.5svh,28px) clamp(20px,4.5vw,56px) clamp(40px,6vw,64px); }
.casa-card{ width: clamp(300px,58vw,760px); flex: none; display: flex; flex-direction: column; gap: 14px; }
.casa-photo{ height: clamp(200px,42svh,540px); box-shadow: 0 30px 60px rgba(12,12,13,.22); overflow: hidden; }
.casa-photo img{ width: 100%; height: 100%; object-fit: cover; }
.casa-cap{ display: flex; align-items: baseline; gap: 16px; }
.casa-num{ font-weight: 900; font-stretch: 125%; font-size: clamp(1.6rem,3vw,2.6rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(12,12,13,.8); }
.casa-cap h3{ font-weight: 800; font-stretch: 120%; text-transform: uppercase; font-size: 16px; letter-spacing: .05em; }
.casa-cap p{ font-size: 14px; line-height: 1.6; color: rgba(12,12,13,.6); margin-top: 6px; max-width: 520px; }
.casa-end{
  width: clamp(260px,34vw,440px); flex: none; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 18px; background: var(--text-dark-2); color: var(--text-light); padding: clamp(24px,3vw,44px);
  height: clamp(200px,42svh,540px); align-self: flex-start;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 22px),calc(100% - 22px) 100%,0 100%);
}
.casa-end-title{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: 1; font-size: clamp(1.6rem,3.2vw,2.8rem); }

@supports (animation-timeline: view()){
  .casa-scene{ height: 440vh; }
  .casa-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: safe center; }
  .casa-track{
    flex-wrap: nowrap; width: max-content; align-items: stretch; will-change: transform;
    animation: trackX 1s linear both; animation-timeline: --casa; animation-range: contain 0% contain 94%;
  }
  [data-casa-dot="1"]{ animation: dotOn 1s both; animation-timeline: --casa; animation-range: contain 0% contain 6%; }
  [data-casa-dot="2"]{ animation: dotOn 1s both; animation-timeline: --casa; animation-range: contain 24% contain 30%; }
  [data-casa-dot="3"]{ animation: dotOn 1s both; animation-timeline: --casa; animation-range: contain 48% contain 54%; }
  [data-casa-dot="4"]{ animation: dotOn 1s both; animation-timeline: --casa; animation-range: contain 72% contain 78%; }
}
@keyframes trackX{ from{ transform: translateX(0); } to{ transform: translateX(calc(-100% + 100vw)); } }

@media (max-width: 640px){
  .casa-track{ gap: 16px; padding-left: 16px; padding-right: 16px; }
  .casa-card{ width: min(84vw,420px); }
  .casa-end{ width: min(78vw,380px); }
}

/* ==========================================================================
   Equipa — fighter-select pinned scene
   ========================================================================== */
.team-scene{ position: relative; background: var(--bg); view-timeline-name: --team; }
.team-stage{ position: relative; }
.team-head{
  width: 100%; max-width: 1500px; margin: 0 auto; padding: clamp(44px,7svh,96px) clamp(24px,6vw,88px) clamp(10px,2svh,24px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.team-hint{ color: rgba(244,241,236,.45); }
.team-body{
  width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 clamp(24px,6vw,88px) clamp(14px,2.5svh,32px);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px,6vw,100px);
}
.team-names{ flex: 1.2 1 380px; min-width: min(100%,300px); display: flex; flex-direction: column; gap: clamp(10px,2vh,18px); }
.team-name{ display: flex; align-items: baseline; gap: clamp(10px,1.5vw,22px); flex-wrap: wrap; color: var(--text-light); }
.team-name h3{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: 1; letter-spacing: -.01em; font-size: min(clamp(1.9rem,4.4vw,4rem),5.2svh); }
.team-role{ letter-spacing: .26em; color: rgba(244,241,236,.5); }
.team-portside{ flex: 1 1 300px; min-width: min(100%,260px); display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.team-ports{ display: flex; flex-wrap: wrap; gap: 18px; width: 100%; box-shadow: 0 34px 70px rgba(0,0,0,.5); }
.team-port{ position: relative; width: min(100%,300px); aspect-ratio: 3/4; overflow: hidden; }
.team-port img{ width: 100%; height: 100%; object-fit: cover; }
.team-hintrow{ display: flex; align-items: center; gap: 10px; }
.team-hintrow .mono-label{ letter-spacing: .26em; color: rgba(244,241,236,.45); font-size: 9px; }

@keyframes nameCycle{ 0%{ color: rgba(244,241,236,.22); transform: none; } 10%{ color: #F4F1EC; transform: translateX(clamp(8px,1.2vw,18px)); } 90%{ color: #F4F1EC; transform: translateX(clamp(8px,1.2vw,18px)); } 100%{ color: rgba(244,241,236,.22); transform: none; } }
@keyframes nameCycleEnd{ 0%{ color: rgba(244,241,236,.22); transform: none; } 10%{ color: #F4F1EC; transform: translateX(clamp(8px,1.2vw,18px)); } 100%{ color: #F4F1EC; transform: translateX(clamp(8px,1.2vw,18px)); } }
@keyframes portCycle{ 0%{ opacity: 0; transform: scale(1.05); pointer-events: none; } 12%{ opacity: 1; transform: none; pointer-events: auto; } 88%{ opacity: 1; transform: none; pointer-events: auto; } 100%{ opacity: 0; transform: scale(.98); pointer-events: none; } }
@keyframes portCycleEnd{ 0%{ opacity: 0; transform: scale(1.05); pointer-events: none; } 12%{ opacity: 1; transform: none; pointer-events: auto; } 100%{ opacity: 1; transform: none; pointer-events: auto; } }

@supports (animation-timeline: view()){
  .team-scene{ height: 540vh; }
  .team-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: safe center; }
  .team-ports{ display: block; position: relative; width: min(clamp(220px,36vw,480px),36svh); aspect-ratio: 3/4; flex: none; }
  .team-port{ position: absolute; inset: 0; width: auto; aspect-ratio: auto; }
  .team-name[data-team-name="1"]{ animation: nameCycle 1s linear both; animation-timeline: --team; animation-range: contain 2% contain 21%; }
  .team-name[data-team-name="2"]{ animation: nameCycle 1s linear both; animation-timeline: --team; animation-range: contain 20% contain 39%; }
  .team-name[data-team-name="3"]{ animation: nameCycle 1s linear both; animation-timeline: --team; animation-range: contain 38% contain 57%; }
  .team-name[data-team-name="4"]{ animation: nameCycle 1s linear both; animation-timeline: --team; animation-range: contain 56% contain 75%; }
  .team-name[data-team-name="5"]{ animation: nameCycleEnd 1s linear both; animation-timeline: --team; animation-range: contain 74% contain 96%; }
  .team-port[data-team-port="1"]{ animation: portCycle 1s linear both; animation-timeline: --team; animation-range: contain 2% contain 21%; }
  .team-port[data-team-port="2"]{ animation: portCycle 1s linear both; animation-timeline: --team; animation-range: contain 20% contain 39%; }
  .team-port[data-team-port="3"]{ animation: portCycle 1s linear both; animation-timeline: --team; animation-range: contain 38% contain 57%; }
  .team-port[data-team-port="4"]{ animation: portCycle 1s linear both; animation-timeline: --team; animation-range: contain 56% contain 75%; }
  .team-port[data-team-port="5"]{ animation: portCycleEnd 1s linear both; animation-timeline: --team; animation-range: contain 74% contain 96%; }
}
@supports not (animation-timeline: view()){
  .team-name{ color: var(--text-light); opacity: 1; }
}

/* Below this width the side-by-side "fighter select" (names column + one
   shared cross-fading photo) doesn't fit a pinned 100svh stage — the photo
   ends up wrapped below the names and clipped. Swap to a plain static list
   pairing each name directly with its own photo, no pin/scroll-jacking. */
@media (max-width: 820px){
  .team-scene{ height: auto !important; }
  .team-stage{ position: relative !important; height: auto !important; overflow: visible !important; display: block !important; }
  .team-hint{ display: none; }
  .team-body{ display: grid; grid-template-columns: 1fr; row-gap: 28px; align-items: stretch; padding-bottom: clamp(48px,8vw,72px); }
  .team-names, .team-portside, .team-ports{ display: contents; }
  .team-hintrow{ display: none; }
  .team-name{ animation: none !important; opacity: 1 !important; transform: none !important; color: var(--text-light) !important; gap: 12px; }
  .team-port{
    animation: none !important; opacity: 1 !important; pointer-events: auto !important;
    position: relative !important; inset: auto !important; width: 100% !important; aspect-ratio: 3/4 !important;
    max-width: 420px; box-shadow: 0 20px 46px rgba(0,0,0,.45);
  }
  .team-name[data-team-name="1"]{ grid-row: 1; }
  .team-port[data-team-port="1"]{ grid-row: 2; }
  .team-name[data-team-name="2"]{ grid-row: 3; }
  .team-port[data-team-port="2"]{ grid-row: 4; }
  .team-name[data-team-name="3"]{ grid-row: 5; }
  .team-port[data-team-port="3"]{ grid-row: 6; }
  .team-name[data-team-name="4"]{ grid-row: 7; }
  .team-port[data-team-port="4"]{ grid-row: 8; }
  .team-name[data-team-name="5"]{ grid-row: 9; }
  .team-port[data-team-port="5"]{ grid-row: 10; }
}

/* ==========================================================================
   Comunidade — pinned scene (red)
   ========================================================================== */
.com-scene{
  position: relative; background: var(--red); color: var(--text-dark); view-timeline-name: --com;
  clip-path: polygon(0 clamp(22px,3.5vw,52px),100% 0,100% 100%,0 100%);
}
.com-stage{ position: relative; }
.com-act{ position: relative; }
.com-act-1{
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: clamp(14px,2.6vh,24px); padding: clamp(80px,12svh,130px) clamp(20px,6vw,60px) clamp(30px,5svh,60px);
}
.com-h2{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .88; letter-spacing: -.015em; font-size: clamp(3rem,12vw,10.5rem); }
@keyframes punchL{ from{ opacity: 0; transform: translateX(-18vw) skewX(6deg); } to{ opacity: 1; transform: none; } }
@keyframes punchR{ from{ opacity: 0; transform: translateX(18vw) skewX(-6deg); } to{ opacity: 1; transform: none; } }
.com-act-2{ display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; padding: clamp(20px,4vh,40px) clamp(20px,4.5vw,56px); }
.com-act2-label{ position: absolute; top: 7%; left: 0; right: 0; text-align: center; letter-spacing: .32em; }
.com-photo{ box-shadow: 0 34px 70px rgba(0,0,0,.35); pointer-events: auto; margin: 0; }
.com-photo img{ width: 100%; height: 100%; object-fit: cover; }
.com-photo figcaption{ position: absolute; left: 0; bottom: -24px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .28em; white-space: nowrap; }
.com-photo-a{ width: min(44vw,480px,64svh); aspect-ratio: 4/3; position: relative; }
.com-photo-b{ width: min(30vw,380px,52svh); aspect-ratio: 3/4; position: relative; }
.com-photo-c{ width: min(26vw,340px,46svh); aspect-ratio: 1/1; position: relative; }
@keyframes clusterA{ from{ opacity: 0; transform: translate(-40vw,30vh) rotate(-24deg) scale(.7); } to{ opacity: 1; transform: rotate(-7deg); } }
@keyframes clusterB{ from{ opacity: 0; transform: translate(38vw,34vh) rotate(20deg) scale(.7); } to{ opacity: 1; transform: rotate(5deg); } }
@keyframes clusterC{ from{ opacity: 0; transform: translateY(60vh) rotate(-12deg) scale(.7); } to{ opacity: 1; transform: rotate(-2deg); } }

.com-panel{ position: relative; margin-top: 24px; }
.com-panel-inner{ max-width: 1100px; margin: 0 auto; text-align: center; }
.quote-mark{ font-weight: 900; font-size: clamp(48px,7svh,72px); line-height: .4; color: var(--red-hi); font-stretch: 125%; }
.quote{ font-size: clamp(1.15rem,2.6vw,2rem); line-height: 1.4; font-weight: 650; letter-spacing: -.01em; text-wrap: pretty; margin-top: 14px; color: var(--text-light); }
.quote .line{ display: block; }
.quote-attr{ display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
.quote-attr .mono-label{ letter-spacing: .26em; color: rgba(244,241,236,.6); }

@keyframes panelUp{ from{ transform: translateY(103%); } to{ transform: translateY(0); } }
@supports (animation-timeline: view()){
  .com-scene{ height: 380vh; }
  .com-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; }
  .com-act{ position: absolute; inset: 0; }
  .com-act-1{ z-index: 2; animation: actOut 1s both; animation-timeline: --com; animation-range: contain 20% contain 27%; }
  .com-act-2{ z-index: 3; pointer-events: none; }
  .com-photo-a{ position: absolute; left: clamp(12px,9vw,150px); top: 15%; }
  .com-photo-b{ position: absolute; right: clamp(12px,8vw,140px); top: 11%; }
  .com-photo-c{ position: absolute; left: 40%; top: 36%; }
  .com-panel{ position: absolute; left: 0; right: 0; bottom: 0; margin: 0; z-index: 5; background: var(--text-dark-2); color: var(--text-light);
    clip-path: polygon(0 clamp(14px,2.5vw,36px),100% 0,100% 100%,0 100%);
    padding: clamp(44px,8svh,88px) clamp(20px,6vw,72px) clamp(26px,4.5svh,52px);
    animation: panelUp 1s var(--ease-wipe) both; animation-timeline: --com; animation-range: contain 55% contain 68%;
  }
  .com-h2 [data-punch="l"]{ animation: punchL .9s var(--ease-out) both; animation-timeline: --com; animation-range: entry 85% contain 6%; }
  .com-h2 [data-punch="r"]{ animation: punchR .9s var(--ease-out) both; animation-timeline: --com; animation-range: contain 2% contain 9%; }
  .com-act-1 > .act-kicker:first-child{ animation: wordUp 1s both; animation-timeline: --com; animation-range: entry 70% contain 3%; }
  .com-act-1 > .act-kicker:last-child{ animation: wordUp 1s both; animation-timeline: --com; animation-range: contain 8% contain 14%; }
  .com-act2-label{ animation: wordUp 1s both; animation-timeline: --com; animation-range: contain 26% contain 33%; }
  .com-photo-a{ animation: clusterA 1s both; animation-timeline: --com; animation-range: contain 24% contain 34%; }
  .com-photo-b{ animation: clusterB 1s both; animation-timeline: --com; animation-range: contain 28% contain 38%; }
  .com-photo-c{ animation: clusterC 1s both; animation-timeline: --com; animation-range: contain 32% contain 42%; }
  .quote .line:nth-child(1){ animation: lineIn 1s both; animation-timeline: --com; animation-range: contain 62% contain 72%; }
  .quote .line:nth-child(2){ animation: lineIn 1s both; animation-timeline: --com; animation-range: contain 66% contain 76%; }
  .quote .line:nth-child(3){ animation: lineIn 1s both; animation-timeline: --com; animation-range: contain 70% contain 80%; }
  .quote-attr{ animation: lineIn 1s both; animation-timeline: --com; animation-range: contain 76% contain 84%; }
}
@supports not (animation-timeline: view()){
  .com-panel{ background: var(--text-dark-2); color: var(--text-light); clip-path: polygon(0 14px,100% 0,100% 100%,0 100%); padding: 60px clamp(20px,6vw,72px); }
  .com-act-2{ position: relative; padding-top: 60px; padding-bottom: 40px; }
}

@media (max-width: 640px){
  .com-photo-a, .com-photo-b, .com-photo-c{ width: min(70vw,320px) !important; }
}

/* ==========================================================================
   Planos — card-deal pinned scene
   ========================================================================== */
.plans-scene{ position: relative; background: var(--bg); view-timeline-name: --plans; }
.plans-stage{ position: relative; }
.plans-head{
  width: 100%; max-width: 1500px; margin: 0 auto; padding: clamp(44px,7svh,96px) clamp(20px,4.5vw,56px) clamp(14px,2.5svh,30px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.plans-h2{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .92; letter-spacing: -.015em; font-size: min(clamp(2rem,5.4vw,4.6rem),7svh); margin-top: 14px; }
.plans-grid{
  width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 clamp(20px,4.5vw,56px) clamp(40px,6vw,64px);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: stretch;
}
.plan-card{
  flex: 1 1 170px; min-width: min(100%,150px); max-width: 360px; background: var(--card); border: 1px solid rgba(244,241,236,.12);
  padding: clamp(14px,1.8vw,30px); display: flex; flex-direction: column; gap: 18px;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%);
  transition: border-color .4s; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.plan-card:hover{ border-color: rgba(168,35,24,.6); }
.plan-top{ display: flex; align-items: center; justify-content: space-between; }
.plan-bar{ width: 40px; height: 3px; background: var(--red); }
.plan-top .mono-label{ letter-spacing: .24em; color: rgba(244,241,236,.4); }
.plan-card h3{ font-weight: 900; font-stretch: 120%; text-transform: uppercase; font-size: 19px; letter-spacing: .03em; line-height: 1.2; }
.plan-item{
  display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(244,241,236,.1);
  padding: 10px 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
}
.plan-item-last{ border-bottom: none; }
.plan-link{ margin-top: auto; color: var(--red-hi); font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; }
.plans-note{
  width: 100%; max-width: 1500px; margin: 0 auto; padding: clamp(14px,2.5svh,26px) clamp(20px,4.5vw,56px) clamp(20px,3svh,36px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: rgba(244,241,236,.45); text-align: center;
}

@keyframes deal1{ 0%,2%{ opacity: 0; transform: translate(150%,80vh) rotate(-18deg); } 14%,82%{ opacity: 1; transform: translate(150%,4vh) rotate(-7deg); } 100%{ opacity: 1; transform: none; } }
@keyframes deal2{ 0%,22%{ opacity: 0; transform: translate(50%,80vh) rotate(12deg); } 34%,82%{ opacity: 1; transform: translate(50%,1vh) rotate(-2deg); } 100%{ opacity: 1; transform: none; } }
@keyframes deal3{ 0%,42%{ opacity: 0; transform: translate(-50%,80vh) rotate(-10deg); } 54%,82%{ opacity: 1; transform: translate(-50%,2.5vh) rotate(3deg); } 100%{ opacity: 1; transform: none; } }
@keyframes deal4{ 0%,62%{ opacity: 0; transform: translate(-150%,80vh) rotate(16deg); } 74%,82%{ opacity: 1; transform: translate(-150%,5.5vh) rotate(8deg); } 100%{ opacity: 1; transform: none; } }
@keyframes dealM1{ 0%,2%{ opacity: 0; transform: translateY(70vh); } 14%,82%{ opacity: 1; transform: translateY(1vh) rotate(-2deg); } 100%{ opacity: 1; transform: none; } }
@keyframes dealM2{ 0%,22%{ opacity: 0; transform: translateY(70vh); } 34%,82%{ opacity: 1; transform: translateY(1vh) rotate(1.5deg); } 100%{ opacity: 1; transform: none; } }
@keyframes dealM3{ 0%,42%{ opacity: 0; transform: translateY(70vh); } 54%,82%{ opacity: 1; transform: translateY(1vh) rotate(-1.5deg); } 100%{ opacity: 1; transform: none; } }
@keyframes dealM4{ 0%,62%{ opacity: 0; transform: translateY(70vh); } 74%,82%{ opacity: 1; transform: translateY(1vh) rotate(2deg); } 100%{ opacity: 1; transform: none; } }

@supports (animation-timeline: view()){
  .plans-scene{ height: 460vh; }
  .plans-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: safe center; }
  .plans-head .eyebrow{ animation: wordUp 1s both; animation-timeline: --plans; animation-range: entry 60% contain 0%; }
  .plans-h2{ animation: wipeIn .8s var(--ease-wipe) both; animation-timeline: --plans; animation-range: entry 70% contain 2%; }
  .plans-head .act-kicker{ animation: wordUp 1s both; animation-timeline: --plans; animation-range: contain 0% contain 5%; }
  .plan-card[data-plan-card="1"]{ animation: deal1 1s linear both; animation-timeline: --plans; animation-range: contain 2% contain 88%; }
  .plan-card[data-plan-card="2"]{ animation: deal2 1s linear both; animation-timeline: --plans; animation-range: contain 2% contain 88%; }
  .plan-card[data-plan-card="3"]{ animation: deal3 1s linear both; animation-timeline: --plans; animation-range: contain 2% contain 88%; }
  .plan-card[data-plan-card="4"]{ animation: deal4 1s linear both; animation-timeline: --plans; animation-range: contain 2% contain 88%; }
  .plans-note{ animation: lineIn 1s both; animation-timeline: --plans; animation-range: contain 88% contain 96%; }
  @media (max-width: 760px){
    .plan-card[data-plan-card="1"]{ animation-name: dealM1; }
    .plan-card[data-plan-card="2"]{ animation-name: dealM2; }
    .plan-card[data-plan-card="3"]{ animation-name: dealM3; }
    .plan-card[data-plan-card="4"]{ animation-name: dealM4; }
  }
}

/* ==========================================================================
   CTA final — zoom takeover
   ========================================================================== */
.cta-scene{ position: relative; color: var(--text-dark); background: var(--bg); view-timeline-name: --cta; }
.cta-stage{ position: relative; }
.cta-pre{ display: none; }
.cta-panel{ display: none; }
.cta-content{ position: relative; overflow: hidden; }
.cta-pre{ color: var(--text-light); padding: clamp(60px,10vh,110px) clamp(20px,6vw,60px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(14px,2.6vh,24px); }
.cta-pre-title{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .88; font-size: clamp(3.4rem,13vw,11.5rem); color: transparent; -webkit-text-stroke: 2.5px rgba(244,241,236,.9); }

.cta-logo{ position: absolute; right: -70px; bottom: -90px; width: min(52vw,480px); aspect-ratio: 1; opacity: .16; pointer-events: none; }
.cta-logo img{ width: 100%; height: 100%; border-radius: 50%; object-fit: cover; mix-blend-mode: multiply; -webkit-mask-image: radial-gradient(closest-side,black 55%,transparent 90%); mask-image: radial-gradient(closest-side,black 55%,transparent 90%); }
.cta-inner{ position: relative; width: 100%; max-width: 1500px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(12px,2.2svh,26px); padding: clamp(52px,9svh,120px) clamp(20px,4.5vw,56px) clamp(32px,6svh,80px); }
.cta-h2{ font-weight: 900; font-stretch: 125%; text-transform: uppercase; line-height: .9; letter-spacing: -.015em; font-size: min(clamp(2.6rem,8vw,7.2rem),10svh); color: var(--text-dark); max-width: 1200px; }
.wipe-dark{ display: block; animation: wipeIn .8s var(--ease-wipe) both; }
.cta-p{ max-width: 540px; font-size: clamp(15px,1.35vw,18px); line-height: 1.6; color: rgba(10,10,11,.78); font-weight: 500; text-wrap: pretty; }
.cta-ctas{ display: flex; flex-wrap: wrap; gap: 14px; }
.cta-contacts{
  display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,56px); margin-top: clamp(8px,1.5svh,20px);
  border-top: 1px solid rgba(10,10,11,.25); padding-top: clamp(14px,2.5svh,26px);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: rgba(10,10,11,.8); line-height: 1.7;
}
.cta-contact-label{ color: rgba(10,10,11,.5); }

@keyframes ctaZoom{ from{ transform: scale(.06) rotate(45deg); } to{ transform: scale(1) rotate(0deg); } }
@supports (animation-timeline: view()){
  .cta-scene{ background: var(--bg); height: 320vh; }
  .cta-stage{ position: sticky; top: 0; height: 100svh; overflow: hidden; }
  .cta-pre{ display: flex; position: absolute; inset: 0; z-index: 1; justify-content: center; animation: actOut 1s both; animation-timeline: --cta; animation-range: contain 28% contain 44%; }
  .cta-panel{ display: block; position: absolute; left: 50%; top: 50%; width: 150vmax; height: 150vmax; margin: -75vmax 0 0 -75vmax; background: var(--red); z-index: 2; animation: ctaZoom 1s cubic-bezier(.6,0,.3,1) both; animation-timeline: --cta; animation-range: contain 0% contain 55%; }
  .cta-content{ position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: safe center; }
  .cta-pre > span:first-child{ animation: wordUp 1s both; animation-timeline: --cta; animation-range: entry 65% contain 2%; }
  .cta-pre-title{ animation: wordUp 1s both; animation-timeline: --cta; animation-range: entry 80% contain 5%; }
  .cta-pre > span:last-child{ animation: wordUp 1s both; animation-timeline: --cta; animation-range: contain 4% contain 9%; }
  .cta-inner > .act-kicker{ animation: wordUp 1s both; animation-timeline: --cta; animation-range: contain 56% contain 62%; }
  .cta-h2 .wipe-dark:nth-child(1){ animation-timeline: --cta; animation-range: contain 58% contain 66%; }
  .cta-h2 .wipe-dark:nth-child(2){ animation-timeline: --cta; animation-range: contain 62% contain 70%; }
  .cta-p{ animation: lineIn 1s both; animation-timeline: --cta; animation-range: contain 66% contain 74%; }
  .cta-ctas .btn-dark{ animation: punchL .8s var(--ease-out) both; animation-timeline: --cta; animation-range: contain 72% contain 79%; }
  .cta-ctas .btn-outline-dark{ animation: punchR .8s var(--ease-out) both; animation-timeline: --cta; animation-range: contain 75% contain 82%; }
  .cta-contacts{ animation: lineIn 1s both; animation-timeline: --cta; animation-range: contain 80% contain 88%; }
}
@supports not (animation-timeline: view()){
  .cta-scene{ background: var(--red); }
  .cta-pre{ display: none; }
  .cta-content{ position: relative; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ background: var(--footer-bg); border-top: 1px solid rgba(244,241,236,.08); padding: clamp(48px,6vw,72px) clamp(20px,4.5vw,56px) 30px; overflow: hidden; }
.footer-word{
  font-weight: 900; font-stretch: 125%; font-size: clamp(3.6rem,12.6vw,12rem); line-height: .9; letter-spacing: .01em; text-align: center;
  color: transparent; -webkit-text-stroke: 1.5px rgba(244,241,236,.22); user-select: none; margin-bottom: clamp(40px,5vw,64px);
}
.footer-row{ display: flex; flex-wrap: wrap; gap: clamp(30px,5vw,72px); justify-content: space-between; align-items: flex-start; }
.footer-brand{ display: flex; align-items: center; gap: 14px; }
.footer-brand .nav-logo{ width: 52px; height: 52px; }
.footer-brand .nav-title{ font-size: 19px; }
.footer-brand .nav-est{ font-size: 9px; letter-spacing: .3em; margin-top: 6px; }
.footer-links{ display: flex; gap: clamp(22px,3vw,40px); flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; }
.footer-contact{ letter-spacing: .14em; color: rgba(244,241,236,.55); line-height: 2; text-align: right; }
.footer-legal{
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; border-top: 1px solid rgba(244,241,236,.08);
  margin-top: clamp(30px,4vw,48px); padding-top: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: rgba(244,241,236,.4);
}

@media (max-width: 640px){
  .footer-row{ flex-direction: column; }
  .footer-contact{ text-align: left; }
}
