*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #4ecdc4;
  --blue:     #3b9ee4;
  --black:    #0d0d0d;
  --white:    #ffffff;
  --light:    #e8f4fd;
  --gray:     #888;
  --grid-color: rgba(59,158,228,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #fcfcff;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 50vw);
}

.page-loader__gif {
  display: block;
  width: 100%;
  height: auto;
}

.grid-bg {
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 70px; width: auto; }
.nav-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.5px;
  color: var(--black);
}
.nav-logo span em {
  font-style: normal;
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal) !important; }
.nav-cta::after { display: none !important; }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
}

.lang-switcher__btn {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  padding: 8px 11px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.lang-switcher__btn:hover {
  background: rgba(78,205,196,0.12);
}

.lang-switcher__btn.is-active,
.lang-switcher__btn[aria-pressed="true"] {
  background: var(--black);
  color: var(--white);
}

#home {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #f7f6f2;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 92px 0 28px;
}

.h-content {
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translateY(-47%);
  z-index: 20;
  width: min(60%, 1040px);
  padding: 0;
}

.h-logo-tag { display: none; }
.h-logo-tag img {
  display: block;
  width: 100%;
  height: auto;
}

.h-title {
  position: relative;
  z-index: 2;
  font-family: 'League Spartan', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(5.5rem, 9.4vw, 9.7rem);
  line-height: .77;
  letter-spacing: -.065em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h-title .h-line { display: block; }
.h-line-teal  {
  color: #5cc5c0;
  opacity: 0;
  animation: heroLineIn .8s .05s cubic-bezier(.2,.8,.2,1) forwards;
}
.h-line-ghost {
  color: #f7f6f2;
  -webkit-text-fill-color: #f7f6f2;
  text-shadow:
    -1.5px 0 0 rgba(0,0,0,1),
    1.5px 0 0 rgba(0,0,0,1),
    0 -1.5px 0 rgba(0,0,0,1),
    0 1.5px 0 rgba(0,0,0,1),
    -1px -1px 0 rgba(0,0,0,1),
    1px -1px 0 rgba(0,0,0,1),
    -1px 1px 0 rgba(0,0,0,1),
    1px 1px 0 rgba(0,0,0,1);
  opacity: 0;
  animation: heroLineIn .8s .18s cubic-bezier(.2,.8,.2,1) forwards;
}
.h-line-black {
  color: #050505;
  opacity: 0;
  animation: heroLineIn .8s .31s cubic-bezier(.2,.8,.2,1) forwards;
}

.h-body {
  position: relative;
  z-index: 2;
  max-width: 640px;
  font-size: .84rem;
  line-height: 1.06;
  color: #131313;
  opacity: 0;
  animation: fadeUp .7s .74s ease forwards;
}

.hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .7s .9s ease forwards;
}

.btn-primary {
  background: var(--teal);
  color: var(--black);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: transform .2s, background .2s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--black);
  color: var(--black);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.hero-art {
  position: absolute;
  inset: 72px 0 0 0;
  z-index: 6;
  pointer-events: none;
  --hero-head-width: min(31vw, 535px);
  --hero-head-height: min(17vw, 282px);
  --hero-head-right: 6.5vw;
  --hero-head-top: 22vh;
}
.hero-art img { display: block; }

.hero-reference { display: none; }

.hero-loop {
  position: absolute;
  width: min(60vw, 830px);
  right: 20vw;
  bottom: -4vw;
  z-index: 1;
  opacity: 0;
  transform: translate3d(40px, 52px, 0) scale(.88);
  transform-origin: center center;
  animation: heroElementIn 1.05s .18s cubic-bezier(.18,.84,.2,1) forwards, heroDrift 14s 1.35s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  width: min(20vw, 220px);
  right: 7vw;
  bottom: 16vh;
  z-index: 2;
  opacity: 0;
  transform: translate3d(26px, 34px, 0) scale(.82);
  transform-origin: center center;
  animation: heroElementIn 1s .54s cubic-bezier(.18,.84,.2,1) forwards, heroDriftSlow 16s 1.6s ease-in-out infinite;
}

.hero-head-underlay,
.hero-head {
  position: absolute;
  width: var(--hero-head-width);
  height: var(--hero-head-height);
  right: var(--hero-head-right);
  top: var(--hero-head-top);
}

.hero-head-underlay {
  z-index: 9;
}

.hero-head {
  z-index: 12;
}

.hero-arrow {
  position: absolute;
  width: min(4.8vw, 84px);
  left: -10%;
  top: -50%;
  z-index: 11;
  opacity: 0;
  transform: translateX(-32px);
  animation: heroArrowIn .8s .58s cubic-bezier(.2,.8,.2,1) forwards, heroArrowFloat 4.8s 1.38s ease-in-out infinite;
}

.hero-ribbon-brush {
  position: absolute;
  right: -53%;
  top: -59%;
  width: min(40vw, 600px);
  z-index: 1;
  opacity: 0;
  transform: translate3d(30px, -10px, 0) scale(.94);
  transform-origin: center center;
  animation: heroElementIn .95s .62s cubic-bezier(.18,.84,.2,1) forwards;
}
.hero-ribbon-words {
  position: absolute;
  right: -40%;
  top: -57%;
  width: min(31vw, 548px);
  z-index: 2;
  opacity: 0;
  transform: translate3d(16px, -6px, 0) scale(.97);
  transform-origin: center center;
  animation: heroElementIn .95s .82s cubic-bezier(.18,.84,.2,1) forwards;
}

.hero-brain {
  position: absolute;
  width: min(16.5vw, 300px);
  right: 16vw;
  top: 13vh;
  z-index: 8;
  opacity: 0;
  transform: translateY(22px) scale(.88);
  transform-origin: center center;
  animation: heroElementIn .85s .72s cubic-bezier(.18,.84,.2,1) forwards;
}

.hero-brain-word {
  position: absolute;
  width: min(8vw, 240px);
  right: 25vw;
  top: 6vh;
  z-index: 9;
  opacity: 0;
  transform: translate(-18px, 18px) rotate(-10deg);
  animation: heroWordIn .7s .94s cubic-bezier(.2,.8,.2,1) forwards, heroBreath 5s 2s ease-in-out infinite;
}

.hero-minds-word {
  position: absolute;
  width: min(2.5vw, 140px);
  right: 22.5vw;
  top: 10vh;
  z-index: 9;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroWordIn .7s 1.04s cubic-bezier(.2,.8,.2,1) forwards, heroBreath 6s 2s ease-in-out infinite;
}

.hero-eye-module {
  position: absolute;
  width: min(10.6vw, 194px);
  height: min(5.2vw, 96px);
  left: 35%;
  top: -10%;
  z-index: 17;
  opacity: 0;
  transform: translate3d(18px, 22px, 0) scale(.78);
  transform-origin: center center;
  animation: heroElementIn .8s 1.1s cubic-bezier(.18,.84,.2,1) forwards;
}


.hero-eye {
  position: absolute;
  width: min(3.8vw, 68px);
  right: 14%;
  top: 13%;
  z-index: 2;
  animation: heroEyePulse 5.5s 2s ease-in-out infinite;
}
.hero-eye-stripes {
  position: absolute;
  width: min(3.9vw, 70px);
  left: 32%;
  bottom: 0;
  z-index: 3;
  opacity: .85;
}

.hero-brand-box {
  position: absolute;
  width: min(16.5vw, 250px);
  right: 4vw;
  bottom: 22vh;
  z-index: 9;
  opacity: 0;
  transform: translate3d(28px, 28px, 0) scale(.92);
  animation: heroElementIn .82s 1.1s cubic-bezier(.18,.84,.2,1) forwards;
}

.hero-person {
  position: absolute;
  width: min(40vw, 700px);
  right: 4vw;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  transform: translate3d(26px, 52px, 0) scale(.94);
  transform-origin: center bottom;
  animation: heroPersonIn 1.05s .84s cubic-bezier(.18,.84,.2,1) forwards;
}

.hero-shoulder-mark {
  position: absolute;
  width: min(9.9vw, 170px);
  right: 34vw;
  bottom: 0;
  z-index: 20;
  opacity: 0;
  filter: none;
  mix-blend-mode: normal;
  animation: heroShoulderMarkIn .8s 1.24s ease forwards;
}

.h-sidebar {
  position: absolute;
  right: 0;
  top: 73px;
  width: min(10vw, 190px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;

}
.h-sidebar img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.h-sidebar img:nth-child(3) {
  margin-left: auto;
  margin-right: 20%;
}

.h-sidebar img:nth-child(1) {
  opacity: 0;
  transform: translateX(28px);
  animation: heroPanelIn .7s .72s cubic-bezier(.2,.8,.2,1) forwards;
}
.h-sidebar img:nth-child(2) {
  opacity: 0;
  transform: translateX(28px);
  animation: heroPanelIn .7s .84s cubic-bezier(.2,.8,.2,1) forwards;
}
.h-sidebar img:nth-child(3) {
  opacity: 0;
  transform: translateX(28px);
  animation: heroPanelIn .7s .96s cubic-bezier(.2,.8,.2,1) forwards;
}
.h-sidebar img:nth-child(4) {
  opacity: 0;
  transform: translateX(28px);
  animation: heroPanelIn .7s 1.08s cubic-bezier(.2,.8,.2,1) forwards;
}

.scroll-hint {
  display: none;
}
.scroll-hint span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(0,0,0,.42);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,.38);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Ticker */
.ticker-wrap {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
.ticker span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-right: 60px;
}
.ticker span em {
  font-style: normal;
  color: var(--teal);
}

section { padding: 120px 80px; }

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

#quienes {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#quienes .grid-bg {
  position: absolute;
  inset: 0;
  opacity: .3;
}
#quienes .section-label { color: var(--teal); }
#quienes .section-title { color: var(--white); }

.quienes-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
}

.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.quienes-text p {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 20px;
}
.quienes-text strong { color: var(--teal); }

.quienes-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.stat-item {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

.team-img-wrap {
  position: relative;
}
.team-img-wrap img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(.3);
  transition: filter .4s;
}
.team-img-wrap:hover img { filter: grayscale(0); }
.team-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 20px;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  border-radius: 4px;
  transition: background .3s, border-color .3s, transform .3s;
}
.team-card:hover {
  background: rgba(78,205,196,.08);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.team-card-role {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.team-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}

#servicios {
  background: var(--white);
  position: relative;
}
.servicios-inner {
  max-width: 1280px;
  margin: auto;
}
.servicios-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.servicios-intro {
  color: var(--gray);
  line-height: 1.8;
  font-size: .95rem;
  margin-top: 20px;
}
.servicios-ms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.ms-badge {
  background: var(--black);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e0e0e0;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { background: var(--black); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { color: var(--teal); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,.5); }
.service-card:hover .service-num { color: rgba(255,255,255,.1); }

.service-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: rgba(0,0,0,.04);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color .3s;
}
.service-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 24px;
  transition: color .3s;
}
.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  transition: color .3s;
  line-height: 1.1;
}
.service-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--gray);
  transition: color .3s;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--gray);
  transition: border-color .3s, color .3s;
}
.service-card:hover .tag { border-color: rgba(78,205,196,.3); color: var(--teal); }

/* Banner strip */
.banner-strip {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e0e0e0;
}
.banner-item {
  overflow: hidden;
  position: relative;
}
.banner-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
  filter: saturate(.8);
}
.banner-item:hover img { transform: scale(1.03); filter: saturate(1); }

#contacto {
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.contacto-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contacto-inner > * {
  min-width: 0;
}

.contacto-info .section-label { color: var(--teal); }
.contacto-info .section-title { color: var(--black); }

.contacto-detail {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contacto-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.contacto-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}
.contacto-item-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
}
.contacto-item-value {
  font-size: .95rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
input, textarea, select {
  border: 1.5px solid #e0e0e0;
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
  width: 100%;
  min-width: 0;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
}
textarea { min-height: 120px; }

.form-captcha-wrap {
  margin-top: 4px;
  margin-bottom: 8px;
}

.form-captcha-wrap .g-recaptcha {
  display: inline-block;
  max-width: 100%;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--teal); color: var(--black); transform: translateY(-2px); }

.form-submit:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.form-status {
  margin-top: 16px;
  min-height: 1.4em;
  padding: 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--black);
  transition: opacity .2s ease, transform .2s ease;
}

.form-status.is-success {
  padding: 14px 16px;
  border-left: 4px solid #12766f;
  background: rgba(78, 205, 196, 0.12);
  color: #12766f;
  font-weight: 600;
}

.form-status.is-error {
  padding: 14px 16px;
  border-left: 4px solid #b42318;
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
  font-weight: 600;
}

.contact-form.is-submitting input,
.contact-form.is-submitting textarea,
.contact-form.is-submitting select,
.contact-form.is-submitting .g-recaptcha,
.contact-form.is-success input,
.contact-form.is-success textarea,
.contact-form.is-success select,
.contact-form.is-success .g-recaptcha,
.contact-form.is-success .form-submit {
  opacity: .65;
}

.contact-form.is-submitting input,
.contact-form.is-submitting textarea,
.contact-form.is-submitting select,
.contact-form.is-submitting .form-submit,
.contact-form.is-success input,
.contact-form.is-success textarea,
.contact-form.is-success select,
.contact-form.is-success .form-submit {
  cursor: not-allowed;
}

.contact-form.is-submitting input,
.contact-form.is-submitting textarea,
.contact-form.is-submitting select,
.contact-form.is-success input,
.contact-form.is-success textarea,
.contact-form.is-success select {
  background: #f5f5f5;
}

footer {
  background: var(--black);
  color: rgba(255,255,255,.4);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-logo em { font-style: normal; color: var(--teal); }
footer p { font-size: .78rem; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgIn {
  from { opacity: 0; transform: scale(1.04) translateX(20px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroElementIn {
  from { opacity: 0; }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes heroPersonIn {
  from { opacity: 0; }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes heroArrowIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroArrowFloat {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-18px); }
}
@keyframes heroWordIn {
  from { opacity: 0; }
  to   { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}
@keyframes heroPanelIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroRibbonDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes heroDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-10px, -12px, 0) scale(1.015); }
}
@keyframes heroDriftSlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(8px, -10px, 0) scale(1.02); }
}
@keyframes heroEyePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes heroBreath {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -8px, 0) scale(1.01); }
}
@keyframes heroShoulderMarkIn {
  from {
    opacity: 0;
    transform: translate3d(12px, 12px, 0) scale(.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.02); }
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .08; }
  50%       { transform: translateY(-50%) scale(1.15); opacity: .12; }
}
@keyframes slideDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50%       { width: 60px; opacity: .4; }
}

/* Animated underline on section titles */
.title-underline {
  position: relative;
  display: inline-block;
}
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  height: 4px;
  width: 0;
  background: var(--teal);
  transition: width .8s ease;
}
.title-underline.visible::after { width: 100%; }

.dot-accent {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: .15;
  animation: pulse 7s ease-in-out infinite;
}

.clientes-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 80px !important;
  min-height: 82vh;
}
.clientes-inner {
  position: relative;
  z-index: 2;
}
.clientes-section .section-label { color: var(--teal); }
.clientes-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
}
.clientes-accent { color: var(--teal); }
.clientes-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color .35s ease;
}
.clientes-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.77,0,.175,1);
}
.clientes-btn:hover::before { transform: translateX(0); }
.clientes-btn:hover { color: var(--black); }
.clientes-btn-text {
  position: relative;
  z-index: 1;
  transition: color .35s ease;
}
.clientes-btn-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  transition: transform .3s ease;
}
.clientes-btn:hover .clientes-btn-arrow { transform: translateX(6px); }

/* Evolution SVG panel */
.clientes-evo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evo-svg {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
}

/* SVG path animation base */
.evo-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ep-timeline { stroke: rgba(255,255,255,.15); stroke-width: 1; }
.ep-tick     { stroke: rgba(255,255,255,.18); stroke-width: 1; }
.ep-arc      { stroke: rgba(78,205,196,.35); stroke-width: 1.5; }
.ep-fig1, .ep-fig2, .ep-fig3, .ep-fig4 {
  stroke: rgba(78,205,196,.8);
  stroke-width: 1.8;
}
.ep-circuit  { stroke: rgba(59,158,228,.9); stroke-width: 1.4; }
.ep-brain    { stroke: rgba(78,205,196,.55); stroke-width: 1.4; }
.ep-star     { stroke: rgba(255,255,255,.22); stroke-width: 1; }

/* Dot elements */
.evo-dot { opacity: 0; transition: opacity .4s ease; }
.evo-dot-fig  { fill: var(--teal); }
.evo-dot-circuit { fill: var(--blue); }
.evo-dot-star { fill: rgba(255,255,255,.45); }
.evo-dot-small { fill: rgba(78,205,196,.5); }

.evo-svg.evo-active .evo-dot { opacity: 1; }

.bt-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

/* 5-strip curtain that sweeps away on enter */
.bt-curtain {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  pointer-events: none;
}
.bts {
  flex: 1;
  background: var(--black);
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform .65s cubic-bezier(.77,0,.175,1);
}
.bts:nth-child(2) { transition-delay: .06s; }
.bts:nth-child(3) { transition-delay: .12s; }
.bts:nth-child(4) { transition-delay: .18s; }
.bts:nth-child(5) { transition-delay: .24s; }
.bt-section.bt-active .bts {
  transform: scaleY(0);
  transform-origin: bottom center;
}

/* Full-screen background */
.bt-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bt-1 .bt-bg { background: var(--black); }
.bt-2 .bt-bg { background: var(--light); }

/* Grid overlay */
.bt-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bt-2 .bt-grid {
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
}

/* Body layout */
.bt-body {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Left / right sides */
.bt-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  overflow: hidden;
}

/* Animated label */
.bt-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
  margin-bottom: 32px;
}
.bt-section.bt-active .bt-label { opacity: 1; transform: translateY(0); transition-delay: .75s; }
.bt-2 .bt-label { color: var(--teal); }

/* Giant word blocks */
.bt-word {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  overflow: hidden;
  opacity: 0;
}
.bt-word-inner {
  display: block;
  transform: translateX(-100px);
  transition: transform .7s cubic-bezier(.22,1,.36,1), opacity .7s ease;
  opacity: 0;
}
.bt-section.bt-active .bt-word-inner { transform: translateX(0); opacity: 1; }
.bt-section.bt-active .bt-word { opacity: 1; }

.bt-word:nth-child(1) .bt-word-inner { transition-delay: .72s; }
.bt-word:nth-child(2) .bt-word-inner { transition-delay: .82s; }
.bt-word:nth-child(3) .bt-word-inner { transition-delay: .92s; }
.bt-word:nth-child(4) .bt-word-inner { transition-delay: 1.02s; }

/* Color variants for words */
.bt-word.wt { color: var(--teal); }
.bt-word.wb { color: var(--white); }
.bt-word.wbl { color: var(--black); }
.bt-word.wstr {
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  text-shadow:
    -2px 0 0 var(--white),
    2px 0 0 var(--white),
    0 -2px 0 var(--white),
    0 2px 0 var(--white),
    -1px -1px 0 var(--white),
    1px -1px 0 var(--white),
    -1px 1px 0 var(--white),
    1px 1px 0 var(--white);
}
.bt-word.wstr-b {
  color: var(--light);
  -webkit-text-fill-color: var(--light);
  text-shadow:
    -2px 0 0 var(--black),
    2px 0 0 var(--black),
    0 -2px 0 var(--black),
    0 2px 0 var(--black),
    -1px -1px 0 var(--black),
    1px -1px 0 var(--black),
    -1px 1px 0 var(--black),
    1px 1px 0 var(--black);
}
.bt-word.wsmall {
  font-size: clamp(1.5rem, 3vw, 3rem);
  margin-top: 8px;
}

/* Right slide: from right */
.bt-right-slide .bt-word-inner { transform: translateX(100px); }
.bt-section.bt-active .bt-right-slide .bt-word-inner { transform: translateX(0); }

/* Teal accent bar */
.bt-accent-bar {
  height: 4px;
  background: var(--teal);
  width: 0;
  transition: width .8s cubic-bezier(.22,1,.36,1) 1.1s;
  margin: 24px 0;
}
.bt-section.bt-active .bt-accent-bar { width: 80px; }

/* Image side */
.bt-img-side {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-img-frame {
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 100%);
  transition: clip-path .85s cubic-bezier(.77,0,.175,1) .3s;
  will-change: clip-path;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px 48px 0;
}
.bt-section.bt-active .bt-img-frame { clip-path: inset(0 0 0 0%); }

.bt-img-frame img {
  width: 100%;
  max-width: 680px;
  display: block;
  object-fit: contain;
  transform: scale(1.08);
  transition: transform 1.2s ease .4s;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.45));
}
.bt-section.bt-active .bt-img-frame img { transform: scale(1); }

/* bt-2: image on left, clip from right */
.bt-2 .bt-img-frame {
  clip-path: inset(0 100% 0 0);
  padding: 48px 0 48px 56px;
}
.bt-2.bt-active .bt-img-frame { clip-path: inset(0 0% 0 0); }
.bt-2 .bt-img-frame img { filter: drop-shadow(0 24px 48px rgba(59,158,228,.25)); }

/* bt-2 word slide from right */
.bt-2 .bt-word-inner { transform: translateX(100px); }
.bt-2.bt-active .bt-word-inner { transform: translateX(0); }

/* Logos / meta row */
.bt-meta {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.bt-section.bt-active .bt-meta { opacity: 1; transform: translateY(0); transition-delay: 1.3s; }

.bt-meta-url {
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
}
.bt-2 .bt-meta-url { color: rgba(0,0,0,.3); }

.bt-meta-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bt-logo-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .1em;
  padding: 6px 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  border-radius: 2px;
}
.bt-logo-badge.teal-badge {
  border-color: var(--teal);
  color: var(--teal);
}
.bt-2 .bt-logo-badge {
  border-color: rgba(0,0,0,.15);
  color: rgba(0,0,0,.4);
}
.bt-2 .bt-logo-badge.teal-badge {
  border-color: var(--teal);
  color: var(--teal);
}

/* Corner number */
.bt-corner-num {
  position: absolute;
  top: 40px;
  right: 80px;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
  transition: opacity .5s ease .9s, color .5s ease;
}
.bt-section.bt-active .bt-corner-num { opacity: 1; }
.bt-2 .bt-corner-num { color: rgba(0,0,0,.04); }

/* Scroll arrow */
.bt-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .5s ease 1.5s;
}
.bt-section.bt-active .bt-scroll-hint { opacity: 1; }
.bt-scroll-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.bt-2 .bt-scroll-label { color: rgba(0,0,0,.3); }
.bt-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: arrowPulse 1.8s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.nav-links a.active::after { width: 100%; }

/* Responsive overrides live in assets/css/responsive.css */

/* ============================================================
- No usa JavaScript para el hero
- No depende de vh/vw sueltos por capa
- Collage escalable con un solo lienzo interno
============================================================ */

#home.bmm-hero {
position: relative !important;
isolation: isolate;
padding: 72px 0 0 !important;
margin: 0 !important;
min-height: auto !important;
background: #f7f6f2 !important;
overflow: hidden !important;
}

.bmm-hero__frame {
position: relative;
width: 100%;
min-height: calc(100svh - 72px);
display: grid;
grid-template-columns: minmax(0, 50%) minmax(0, 50%);
align-items: center;
overflow: hidden;
}

.bmm-hero__copy {
position: relative;
z-index: 30;
width: 100%;
max-width: 1060px;
padding-left: clamp(32px, 4.2vw, 82px);
padding-right: clamp(16px, 2.2vw, 44px);
padding-bottom: clamp(0px, 3vh, 40px);
}

.bmm-hero__title {
font-family: 'League Spartan', 'Montserrat', sans-serif;
font-weight: 900;
text-transform: uppercase;
letter-spacing: -0.065em;
line-height: .765;
font-size: clamp(5.7rem, 8.8vw, 11rem);
margin: 0 0 clamp(14px, 1.5vw, 26px);
position: relative;
z-index: 2;
}

.bmm-title-line {
display: block;
white-space: nowrap;
opacity: 0;
transform: translate3d(-34px, 28px, 0);
}

.bmm-title-teal {
color: #5cc5c0;
animation-delay: .06s;
letter-spacing: -0.03em;
}

.bmm-title-outline {
color: #f7f6f2;
-webkit-text-fill-color: #f7f6f2;
letter-spacing: -0.03em;
text-shadow:
  -2px 0 0 #111,
  2px 0 0 #111,
  0 -2px 0 #111,
  0 2px 0 #111,
  -1px -1px 0 #111,
  1px -1px 0 #111,
  -1px 1px 0 #111,
  1px 1px 0 #111;
animation-delay: .16s;
}

.bmm-title-black {
color: #030303;
animation-delay: .26s;
letter-spacing: -0.03em;
}

.bmm-hero__text {
max-width: 720px;
color: #141414;
font-size: clamp(.86rem, .92vw, 1.05rem);
line-height: 1.1;
margin: 0;
opacity: 0;
transform: translateY(18px);
}

.bmm-hero__actions {
display: flex;
flex-wrap: wrap;
gap: clamp(12px, 1vw, 18px);
margin-top: clamp(18px, 1.65vw, 28px);
opacity: 0;
transform: translateY(18px);
}

.bmm-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
min-width: clamp(160px, 11vw, 210px);
padding: 13px 26px;
border-radius: 0;
font-family: 'Montserrat', sans-serif;
font-size: clamp(.76rem, .8vw, .9rem);
font-weight: 900;
letter-spacing: .06em;
text-transform: uppercase;
text-decoration: none;
line-height: 1;
transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bmm-btn-primary {
background: var(--teal);
color: var(--black);
border: 2px solid var(--teal);
}

.bmm-btn-outline {
background: transparent;
color: var(--black);
border: 2px solid var(--black);
}

.bmm-btn:hover {
transform: translateY(-2px);
}

.bmm-btn-primary:hover {
background: var(--blue);
border-color: var(--blue);
}

.bmm-btn-outline:hover {
color: var(--teal);
border-color: var(--teal);
}

.bmm-hero__visual {
position: relative;
z-index: 10;
width: 100%;
height: 100%;
min-height: calc(100svh - 72px);
}

/* El lienzo que escala TODO el collage como si fuera Revolution Slider */
.bmm-collage {
position: absolute;
right: clamp(-12px, 1.5vw, 30px);
bottom: 0;
width: min(60vw, 1080px);
max-width: 1000px;
aspect-ratio: 1000 / 800;
transform-origin: right bottom;
}

.bmm-layer,
.bmm-collage img {
position: absolute;
display: block;
max-width: none;
height: auto;
user-select: none;
pointer-events: none;
}

.bmm-layer {
opacity: 0;
transform: translate3d(var(--from-x, 0), var(--from-y, 0), 0) scale(var(--from-scale, .96));
}

/* Orden de capas */
.bmm-loop {
width: 86%;
left: -30%;
top: 22%;
z-index: 1;
--from-x: 30px;
--from-y: 34px;
--from-scale: .9;
 --delay: .44s;
}

.bmm-ring {
width: 33%;
right: 17%;
top: 40%;
z-index: 7;
aspect-ratio: 1;
border-radius: 50%;
background-color: var(--blue);
--from-x: 20px;
--from-y: -18px;
--from-scale: .88;
 --delay: .28s;
}

.bmm-ribbon-brush {
width: 58%;
right: -10%;
top: 5%;
z-index: 7;
--from-x: 24px;
--from-y: -12px;
 --delay: .58s;
}

.bmm-ribbon-words {
width: 53%;
right: -10%;
top: 5.7%;
z-index: 7;
--from-x: 18px;
--from-y: -10px;
 --delay: .70s;
}

.bmm-person {
width: 73%;
right: 6%;
bottom: 0;
z-index: 9;
--from-x: 24px;
--from-y: 48px;
--from-scale: .94;
 --delay: .28s;
}

.bmm-brain {
  width: 30%;
  left: 42%;
  top: 15%;
  z-index: 6;
  --from-x: 0;
  --from-y: 24px;
  --from-scale: .9;
  --delay: .44s;
}

.bmm-brain-word {
  width: 14%;
  left: 43%;
  top: 9%;
  z-index: 7;
  --from-x: -18px;
  --from-y: 20px;
  --delay: .82s;
}

.bmm-minds-word {
  width: 3.5%;
  left: 57%;
  top: 16%;
  z-index: 7;
  --from-x: 0;
  --from-y: -20px;
  --delay: .94s;
}

.bmm-arrow {
width: 11%;
left: 23%;
top: 12%;
z-index: 15;
--from-x: -36px;
--from-y: 0;
--delay: .74s;
}

.bmm-eye-module {
width: 17%;
height: 10%;
right: 29%;
top: 22.5%;
z-index: 16;
--from-x: 14px;
--from-y: 18px;
--from-scale: .82;
 --delay: 1.06s;
}

.bmm-eye {
width: 42%;
right: 10%;
top: 3%;
z-index: 2;
opacity: 0;
}

.bmm-eye-stripes {
width: 45%;
left: 18%;
bottom: 0;
z-index: 1;
opacity: .9;
}

.bmm-shoulder-mark {
width: 19%;
left: 21.5%;
bottom: 0%;
z-index: 11;
opacity: .52;
--from-x: 0;
--from-y: 0;
--from-scale: 0;
 --delay: 1.32s;
transform-origin: center center;
filter: drop-shadow(0 0 14px rgba(255,255,255,.22));
}

.bmm-brand-box {
width: 25%;
right: 11%;
top: 60%;
z-index: 8;
--from-x: 28px;
--from-y: 26px;
--from-scale: .9;
 --delay: 1.32s;
}

.bmm-panels {
position: absolute;
right: 0;
top: 0;
width: clamp(145px, 12.4vw, 140px);
z-index: 40;
display: flex;
flex-direction: column;
align-items: stretch;
pointer-events: none;
}

.bmm-panels img {
display: block;
width: 100%;
height: auto;
opacity: 0;
transform: translateX(34px);
}

.bmm-panels img:nth-child(1) { animation-delay: 1.46s; }
.bmm-panels img:nth-child(2) { animation-delay: 1.56s; }
.bmm-panels img:nth-child(3) { animation-delay: 1.66s; }
.bmm-panels img:nth-child(4) { animation-delay: 1.76s; }

body.hero-ready .bmm-title-line {
animation: bmmTitleIn .72s cubic-bezier(.22,1,.36,1) forwards;
}

body.hero-ready .bmm-hero__text {
animation: bmmFadeUp .65s .48s ease forwards;
}

body.hero-ready .bmm-hero__actions {
animation: bmmFadeUp .65s .62s ease forwards;
}

body.hero-ready .bmm-layer {
animation: bmmLayerIn .78s var(--delay, .2s) cubic-bezier(.22,1,.36,1) forwards;
}

body.hero-ready .bmm-ring {
animation: bmmLayerIn .78s .28s cubic-bezier(.22,1,.36,1) forwards, bmmRingColorShift 15.5s 1.28s ease-in-out infinite;
}

body.hero-ready .bmm-brain {
animation: bmmLayerIn .78s .44s cubic-bezier(.22,1,.36,1) forwards, bmmBrainBreath 4.8s 1.32s ease-in-out infinite;
}

body.hero-ready .bmm-brain-word {
animation: bmmLayerIn .78s .82s cubic-bezier(.22,1,.36,1) forwards, bmmWordFloat 3s 1.6s ease-in-out infinite;
}

body.hero-ready .bmm-minds-word {
animation: bmmLayerIn .78s .94s cubic-bezier(.22,1,.36,1) forwards, bmmWordFloat 4s 1.72s ease-in-out infinite;
}

body.hero-ready .bmm-arrow {
animation: bmmLayerIn .78s .74s cubic-bezier(.22,1,.36,1) forwards, bmmArrowFloatX 2s 1s ease-in-out infinite;
}

body.hero-ready .bmm-eye {
animation: bmmEyeReveal .24s 1.18s linear forwards, bmmEyePulse 9.3s 1.72s ease-in-out infinite;
}

body.hero-ready .bmm-shoulder-mark {
animation: bmmShoulderIn .78s 1.32s cubic-bezier(.22,1,.36,1) forwards, bmmShoulderOpacity 4.6s 2.1s ease-in-out infinite;
}

body.hero-ready .bmm-panels img {
animation: bmmPanelIn .58s cubic-bezier(.22,1,.36,1) forwards;
}

body.hero-ready .bmm-panels img:nth-child(1) { animation-delay: 1.46s; }
body.hero-ready .bmm-panels img:nth-child(2) { animation-delay: 1.56s; }
body.hero-ready .bmm-panels img:nth-child(3) { animation-delay: 1.66s; }
body.hero-ready .bmm-panels img:nth-child(4) { animation-delay: 1.76s; }

@keyframes bmmTitleIn {
to { opacity: 1; transform: translate3d(0,0,0); }
}

@keyframes bmmFadeUp {
to { opacity: 1; transform: translateY(0); }
}

@keyframes bmmLayerIn {
to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

@keyframes bmmPanelIn {
to { opacity: 1; transform: translateX(0); }
}

@keyframes bmmEyePulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.03); }
}

@keyframes bmmEyeReveal {
to { opacity: 1; }
}

@keyframes bmmArrowFloatX {
0%, 100% { transform: translateX(-5px); }
50% { transform: translateX(5px); }
}

@keyframes bmmRingColorShift {
0%, 24% { background-color: var(--blue); }
28%, 48% { background-color: var(--teal); }
52%, 74% { background-color: var(--black); }
78%, 100% { background-color: var(--gray); }
}

@keyframes bmmBrainBreath {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}

@keyframes bmmShoulderIn {
0% { opacity: 0; transform: scale(0); }
100% { opacity: .52; transform: scale(1); }
}

@keyframes bmmWordFloat {
0%, 100% { transform: translateY(-4px); }
50% { transform: translateY(4px); }
}

@keyframes bmmShoulderOpacity {
0%, 100% { opacity: .24; }
50% { opacity: .82; }
}

.ticket {
position: fixed;
bottom: 20px;
z-index: 10;
background: #4c4c4c;
width: 98px;
height: 94px;
transition: .4s;
overflow: hidden;
text-decoration: none;
font-family: inherit;
}

.hovered,
.ticket:hover {
height: 350px;
}

.ticket .ticket-info {
color: #fff;
position: absolute;
transform: matrix(0,-1,1,0,0,0);
width: 223px;
height: 54px;
bottom: 184px;
left: -61px;
display: flex;
flex-wrap: wrap;
}

.ticket .ticket-info .t-text-1 {
font-size: 14px;
font-weight: 300;
line-height: 18px;
width: 100%;
}

.ticket .ticket-info .t-text-2 {
font-size: 16px;
font-weight: 900;
line-height: 20px;
width: 100%;
text-align: right;
}

.ticket .ticket-icon {
width: 100%;
height: 98px;
background: url(../images/ticket.webp) center/56% no-repeat;
position: absolute;
bottom: 0;
cursor: pointer;
transition: .4s;
}

.ticket:hover .ticket-icon {
transform: rotate(10deg);
}


/* Breakpoint-specific rules live in assets/css/responsive.css */
