/* ==========================================================================
   Enter Group — "switch on" dark theme
   ========================================================================== */

:root {
  --bg: #050507;
  --bg-2: #0c0c11;
  --line: rgba(244, 244, 239, 0.12);
  --ink: #f4f4ef;
  --muted: rgba(244, 244, 239, 0.58);
  --lime: #98f848;
  --lime-ink: #0b1400;
  --blue: #001088;
  --blue-hi: #2a45ff;
  --radius: 22px;
  --gutter: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: 'Unbounded', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
/* Sin scroll-behavior: smooth — Lenis se encarga, y rompe las mediciones de ScrollTrigger */
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.55 var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
::selection { background: var(--lime); color: var(--lime-ink); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 6px; }

.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--lime); color: var(--lime-ink); padding: 10px 16px; border-radius: 99px; font-weight: 600; }
.skip:focus { top: 12px; }

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

.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed; left: 0; top: 0; z-index: 150; pointer-events: none;
    mix-blend-mode: difference;
  }
  .cursor span {
    display: block; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%;
    background: var(--lime); transition: transform 0.35s var(--ease), opacity 0.3s;
  }
  .cursor.is-hover span { transform: scale(3.4); }
  .cursor.is-hidden span { opacity: 0; }
}

/* ---------- Switch (el motivo de la marca) ---------- */
.switch {
  --w: 1.9em; --h: 0.8em; --pad: 0.07em;
  position: relative; display: inline-block; flex: none;
  width: var(--w); height: var(--h); border-radius: 99px;
  background: transparent; box-shadow: inset 0 0 0 0.045em currentColor;
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.switch__knob {
  position: absolute; top: var(--pad); left: var(--pad);
  width: calc(var(--h) - var(--pad) * 2); height: calc(var(--h) - var(--pad) * 2); border-radius: 50%;
  background: currentColor;
  transition: transform 0.7s var(--ease), background 0.5s, box-shadow 0.5s;
}
.switch.is-on { background: var(--lime); box-shadow: inset 0 0 0 0.045em var(--lime), 0 0 0.6em rgba(152, 248, 72, 0.35); }
.switch.is-on .switch__knob { transform: translateX(calc(var(--w) - var(--h))); background: var(--lime-ink); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 180; background: var(--bg);
  display: grid; place-items: center; font-family: var(--display); font-weight: 300;
}
.loader__inner { display: flex; align-items: center; gap: 0.25em; font-size: clamp(2.4rem, 8vw, 5rem); }
.loader__count { position: absolute; right: var(--gutter); bottom: var(--gutter); font-size: 0.9rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.loader.is-done { transform: translateY(-100%); transition: transform 0.9s var(--ease) 0.1s; }
.no-js .loader { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: transparent;
  position: relative; display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.85em 1.35em; border-radius: 99px; overflow: hidden; isolation: isolate;
  font: 600 0.82rem/1 var(--display); letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--bg-btn); transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--ink); transform: translateY(101%); transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: none; }
.btn:hover { color: var(--bg); }
.btn__arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translate(2px, -2px) rotate(8deg); }
.btn--lime { --bg-btn: var(--lime); color: var(--lime-ink); }
.btn--ghost { box-shadow: inset 0 0 0 1px var(--line); }
.btn--big { font-size: 1rem; padding: 1.1em 1.8em; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 16px var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s var(--ease), translate 0.5s var(--ease);
}
.nav.is-scrolled { background: rgba(5, 5, 7, 0.6); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); padding-block: 10px; box-shadow: 0 1px 0 var(--line); }
.nav.is-hidden { translate: 0 -110%; }
.nav__logo img { width: 56px; height: 56px; transition: transform 0.6s var(--ease); }
.nav__logo:hover img { transform: rotate(-12deg) scale(1.05); }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a {
  position: relative; padding: 8px 14px; border-radius: 99px;
  font: 500 0.78rem/1 var(--display); letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted);
  transition: color 0.3s, background 0.3s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); background: rgba(244, 244, 239, 0.07); }
.nav__links a.is-active::after { content: ''; position: absolute; left: 50%; bottom: 2px; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--lime); }
.nav__burger { display: none; width: 44px; height: 44px; margin-left: auto; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease); }
.nav__burger span:first-child { top: 18px; } .nav__burger span:last-child { top: 25px; }
.nav__burger[aria-expanded='true'] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded='true'] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 95; background: var(--bg);
  display: flex; align-items: flex-end; padding: 100px var(--gutter) 48px;
  clip-path: circle(0 at calc(100% - 40px) 40px); transition: clip-path 0.7s var(--ease);
}
.menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); }
.menu nav { display: grid; gap: 6px; }
.menu a { font: 400 clamp(1.8rem, 8vw, 2.6rem)/1.15 var(--display); display: flex; align-items: baseline; gap: 14px; }
.menu small { font: 500 0.75rem var(--body); color: var(--lime); }

/* ---------- Section heads ---------- */
section { position: relative; padding: clamp(80px, 12vw, 160px) var(--gutter); }
.section-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(32px, 5vw, 64px); }
.section-head__num {
  font: 500 0.8rem/1 var(--display); color: var(--lime);
  padding: 6px 10px; border-radius: 99px; box-shadow: inset 0 0 0 1px rgba(152, 248, 72, 0.4);
}
.section-head__title { margin: 0; font: 300 clamp(2.2rem, 6vw, 5rem)/0.95 var(--display); letter-spacing: -0.03em; }
.section-head__title em { color: var(--lime); font-size: 1.12em; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 40px; overflow: hidden;
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--lime {
  width: 55vmax; height: 55vmax; left: -28vmax; top: 10%;
  background: radial-gradient(circle, rgba(152, 248, 72, 0.55), rgba(152, 248, 72, 0) 65%);
  animation: drift 16s ease-in-out infinite alternate;
}
.hero__glow--blue {
  width: 60vmax; height: 60vmax; right: -30vmax; bottom: -25vmax;
  background: radial-gradient(circle, rgba(42, 69, 255, 0.7), rgba(0, 16, 136, 0) 65%);
  animation: drift 20s ease-in-out -6s infinite alternate-reverse;
}
@keyframes drift { to { transform: translate(8vw, -6vh) scale(1.15); } }
.hero.is-off .hero__glow { opacity: 0.25; }
.hero__glow { transition: opacity 1.2s var(--ease); }

.hero__orbit {
  position: absolute; width: min(90vw, 900px); aspect-ratio: 1; left: 50%; top: 50%;
  translate: -50% -50%; border-radius: 50%; border: 1px dashed rgba(244, 244, 239, 0.08);
  animation: spin 80s linear infinite; pointer-events: none;
}
.hero__orbit::after { content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px var(--lime); }
@keyframes spin { to { rotate: 360deg; } }

.hero__kicker { position: relative; font: 500 0.78rem/1 var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0 0 clamp(20px, 3vw, 36px); text-align: center; }
.hero__title {
  position: relative; margin: 0 auto; display: grid; gap: 0.12em; justify-items: start;
  font: 300 clamp(3rem, 11.5vw, 11rem)/0.95 var(--display); letter-spacing: -0.04em;
}
.hero__row { display: flex; align-items: center; gap: 0.18em; }
.hero__row:nth-child(2) { padding-left: 0; }
.hero__word { display: inline-flex; overflow: hidden; padding-block: 0.06em; }
.hero__word .ch { display: inline-block; will-change: transform; }
.switch--hero { --w: 1.72em; --h: 0.74em; --pad: 0.085em; color: var(--ink); margin-inline: 0.04em -0.12em; cursor: pointer; }
.switch--hero .switch__knob { background: transparent; box-shadow: inset 0 0 0 0.05em currentColor; }
.switch--hero.is-on .switch__knob { background: transparent; box-shadow: inset 0 0 0 0.06em var(--lime-ink); }
.switch--hero:hover .switch__knob { scale: 1.06; }

.hero__key {
  display: grid; place-items: center; width: 1.25em; height: 0.8em; border-radius: 0.2em; margin-right: 0.12em;
  background: var(--blue); color: var(--ink); box-shadow: 0 0 0 0 rgba(42, 69, 255, 0.6);
  animation: keyPulse 2.6s var(--ease) infinite; transition: background 0.3s, translate 0.4s var(--ease);
}
.hero__key svg { width: 0.42em; height: 0.42em; transition: transform 0.4s var(--ease); }
.hero__key:hover { background: var(--blue-hi); translate: 0 0.03em; }
.hero__key:hover svg { transform: translate(0.03em, -0.03em); }
@keyframes keyPulse { 0% { box-shadow: 0 0 0 0 rgba(42, 69, 255, 0.55); } 70%, 100% { box-shadow: 0 0 0 0.25em rgba(42, 69, 255, 0); } }

.hero__foot {
  position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  margin-top: clamp(40px, 8vh, 100px);
}
.hero__lead { max-width: 440px; margin: 0; font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--muted); }
.hero__lead em { color: var(--ink); font-size: 1.2em; }
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; font: 500 0.7rem var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 56px; background: linear-gradient(var(--lime), transparent); transform-origin: top; animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--lime); color: var(--lime-ink);
  transform: rotate(-2deg) scale(1.04); margin-block: 10px; position: relative; z-index: 2;
}
.marquee__track { display: flex; width: max-content; gap: 28px; padding: 16px 0; animation: marquee 32s linear infinite; }
.marquee span { font: 600 clamp(1rem, 2.2vw, 1.6rem)/1 var(--display); text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap; }
.marquee b { font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__statement {
  max-width: 1200px; margin: 0 0 clamp(56px, 8vw, 110px);
  font: 300 clamp(1.5rem, 3.4vw, 3rem)/1.18 var(--display); letter-spacing: -0.025em;
}
.about__statement .w { opacity: 0.16; transition: opacity 0.2s; }
.no-js .about__statement .w, .reduced .about__statement .w { opacity: 1; }

.about__grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 20px; align-items: end; border-top: 1px solid var(--line); padding-top: 32px; }
.stat__num { display: block; font: 300 clamp(3rem, 6vw, 5.5rem)/1 var(--display); letter-spacing: -0.04em; color: var(--lime); font-variant-numeric: tabular-nums; }
.stat__label { color: var(--muted); font-size: 0.95rem; }
.about__side { margin: 0; color: var(--muted); max-width: 380px; justify-self: end; }

.mv { display: grid; grid-template-columns: 1fr 1.3fr; gap: 20px; margin-top: clamp(56px, 8vw, 110px); }
.mv__card {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(28px, 4vw, 48px);
  min-height: 300px; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.6s var(--ease);
}
.mv__card:hover { transform: translateY(-6px) rotate(-0.4deg); }
.mv__card p { margin: 0; font: 300 clamp(1.4rem, 2.8vw, 2.4rem)/1.12 var(--display); letter-spacing: -0.02em; }
.mv__card em { font-size: 1.1em; }
.mv__card--lime { background: var(--lime); color: var(--lime-ink); }
.mv__card--blue { background: radial-gradient(120% 120% at 100% 0%, var(--blue-hi), var(--blue) 55%, #000650); }
.mv__card::after {
  content: ''; position: absolute; width: 220px; height: 220px; right: -60px; bottom: -60px; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.2; transition: transform 0.8s var(--ease);
}
.mv__card:hover::after { transform: scale(1.6); }
.mv__tag { align-self: flex-start; font: 600 0.72rem/1 var(--display); text-transform: uppercase; letter-spacing: 0.14em; padding: 8px 12px; border-radius: 99px; box-shadow: inset 0 0 0 1px currentColor; }

.values { margin-top: clamp(56px, 8vw, 110px); }
.values__title { margin: 0 0 24px; font: 500 0.85rem var(--display); text-transform: uppercase; letter-spacing: 0.14em; }
.values__title span { color: var(--muted); text-transform: none; letter-spacing: 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; font-weight: 400; }
.values__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.values__list li {
  display: flex; align-items: center; gap: 18px; padding: 26px 8px; border-bottom: 1px solid var(--line);
  font: 300 clamp(1.1rem, 2vw, 1.7rem)/1 var(--display); letter-spacing: -0.02em; color: var(--muted);
  transition: color 0.5s;
}
.values__list li:has(.is-on) { color: var(--ink); }
.values__list li:nth-child(3n + 2), .values__list li:nth-child(3n + 3) { padding-left: 24px; border-left: 1px solid var(--line); }
.switch--sm { font-size: 1.3rem; color: var(--muted); }

/* ---------- Brands ---------- */
.brands { padding-inline: 0; padding-bottom: 0; }
.brands__intro { padding-inline: var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.brands__intro .section-head { margin-bottom: 0; }
.brands__hint { margin: 0; color: var(--muted); max-width: 320px; }
.brands__drag { color: var(--lime); white-space: nowrap; }
.brands__pin { position: relative; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.brands__track { display: flex; gap: clamp(16px, 2vw, 28px); padding-inline: var(--gutter); will-change: transform; }

.brand {
  --accent: var(--lime); --accent-2: var(--blue-hi);
  position: relative; flex: none; width: min(78vw, 1040px); height: min(74svh, 660px);
  border-radius: calc(var(--radius) + 8px); overflow: hidden; isolation: isolate;
  background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line);
  display: grid; grid-template-columns: 1fr 1.1fr; transition: box-shadow 0.6s;
}
.brand:hover { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent); }
.brand__visual { position: relative; display: grid; place-items: center; overflow: hidden; }
.brand__visual::before {
  content: ''; position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 75%, transparent), transparent 42%),
    radial-gradient(circle at 75% 80%, color-mix(in srgb, var(--accent-2) 50%, transparent), transparent 45%);
  transition: transform 1.2s var(--ease);
  animation: blob 12s ease-in-out infinite alternate;
}
.brand:hover .brand__visual::before { transform: scale(1.15) rotate(12deg); }
@keyframes blob { to { transform: translate(6%, -4%) rotate(20deg); } }
.brand__ring { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); animation: spin 40s linear infinite; }
.brand__ring::after { content: ''; position: absolute; left: 50%; top: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.brand__logo { width: 72%; max-width: 360px; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45)); transition: transform 0.9s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.06) rotate(-2deg); }
.brand__num { position: absolute; left: 24px; top: 20px; font: 500 0.8rem var(--display); color: rgba(255, 255, 255, 0.8); }

.brand__body { display: flex; flex-direction: column; padding: clamp(24px, 3.5vw, 52px); gap: 20px; border-left: 1px solid var(--line); }
.brand__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand__tags span { font-size: 0.78rem; padding: 6px 12px; border-radius: 99px; box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); }
.brand__tagline { margin: auto 0 0; font: 400 clamp(2rem, 3.8vw, 3.6rem)/0.98 var(--serif); font-style: italic; letter-spacing: -0.01em; color: var(--accent); }
.brand__text { margin: 0; color: var(--muted); font-size: 0.98rem; max-width: 52ch; }
.brand__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.brand .btn--accent { --bg-btn: var(--accent); color: #0a0a0a; }

.brands__progress { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 5svh; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.brands__progress span { display: block; height: 100%; width: 100%; background: var(--lime); transform-origin: left; transform: scaleX(0); }

/* ---------- Instagram feed ---------- */
.feed__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 48px); }
.feed__head .section-head { margin-bottom: 0; }
.feed__tabs { display: flex; flex-wrap: wrap; gap: 6px; padding: 5px; border-radius: 99px; box-shadow: inset 0 0 0 1px var(--line); position: relative; }
.feed__tab {
  position: relative; z-index: 1; padding: 9px 16px; border-radius: 99px;
  font: 500 0.78rem/1 var(--display); color: var(--muted); transition: color 0.3s;
}
.feed__tab[aria-selected='true'] { color: var(--lime-ink); }
.feed__tab:hover:not([aria-selected='true']) { color: var(--ink); }
.feed__pill { position: absolute; z-index: 0; top: 5px; height: calc(100% - 10px); border-radius: 99px; background: var(--lime); transition: left 0.5s var(--ease), width 0.5s var(--ease), top 0.5s var(--ease); }

.feed__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.2vw, 16px); }
.post {
  position: relative; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; background: var(--bg-2);
  opacity: 0; transform: translateY(24px) scale(0.98); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.post.is-in { opacity: 1; transform: none; }
.feed__grid > .post:first-of-type { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.post img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 0.6s; }
.post:hover img { transform: scale(1.07); filter: saturate(1.15); }
.post__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1) 55%, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.post:hover .post__overlay, .post:focus-visible .post__overlay { opacity: 1; }
.post__caption { margin: 0; font-size: 0.9rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; transform: translateY(10px); transition: transform 0.5s var(--ease); }
.post:hover .post__caption { transform: none; }
.post__meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--muted); }
.post__type { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px); font-size: 0.8rem; }

.post--demo { display: grid; place-items: center; text-align: center; padding: 20px; background: var(--bg-2); }
.post--demo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at var(--x, 30%) var(--y, 20%), color-mix(in srgb, var(--accent, var(--lime)) 55%, transparent), transparent 70%),
              radial-gradient(60% 60% at 80% 90%, rgba(42, 69, 255, 0.45), transparent 70%);
  opacity: 0.8; transition: opacity 0.6s, transform 1s var(--ease);
}
.post--demo:hover::before { opacity: 1; transform: scale(1.1); }
.post--demo img { position: relative; width: 70%; height: auto; object-fit: contain; opacity: 0.9; }
.post--demo:hover img { transform: scale(1.05) rotate(-3deg); }
.post__quote { position: relative; font: 400 clamp(1.3rem, 2.2vw, 2rem)/1.05 var(--serif); font-style: italic; transition: transform 0.6s var(--ease); }
.post__quote--cta { font: 500 clamp(0.9rem, 1.3vw, 1.1rem)/1.3 var(--display); font-style: normal; text-transform: uppercase; letter-spacing: 0.02em; }
.post--demo:hover .post__quote { transform: scale(1.06) rotate(-2deg); }
.post--demo .post__overlay { opacity: 1; background: none; justify-content: flex-end; align-items: center; }
.post--demo .post__caption { transform: none; font: 500 0.72rem var(--display); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

.post--skeleton { opacity: 1; transform: none; background: linear-gradient(100deg, var(--bg-2) 30%, #17171f 50%, var(--bg-2) 70%) 0 0 / 300% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -150% 0; } }
.feed__notice { grid-column: 1 / -1; margin: 0 0 4px; color: var(--muted); font-size: 0.9rem; }
.feed__foot { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Jobs / form ---------- */
.jobs { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.jobs__side { position: sticky; top: 120px; }
.jobs__pitch { margin: 0; font: 400 clamp(1.6rem, 2.6vw, 2.2rem)/1.1 var(--serif); font-style: italic; color: var(--muted); }
.jobs__big { margin: 8px 0 0; font: 300 clamp(3rem, 7vw, 6.5rem)/0.95 var(--display); letter-spacing: -0.04em; }
.jobs__key {
  display: inline-flex; align-items: center; gap: 0.2em; padding: 0.04em 0.28em 0.1em; margin-top: 0.1em; border-radius: 0.22em;
  background: var(--lime); color: var(--lime-ink); box-shadow: 0 0.09em 0 #5aa51e, 0 0.2em 0.6em rgba(152, 248, 72, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.jobs__key i { font-style: normal; font-size: 0.6em; }
.jobs__key:hover { transform: translateY(0.06em); box-shadow: 0 0.03em 0 #5aa51e, 0 0.1em 0.3em rgba(152, 248, 72, 0.3); }

.form { display: grid; gap: 22px; padding: clamp(24px, 3.5vw, 44px); border-radius: calc(var(--radius) + 6px); background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
.form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form legend { font: 500 0.75rem var(--display); text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: block; padding: 10px 16px; border-radius: 99px; box-shadow: inset 0 0 0 1px var(--line); font-size: 0.92rem; transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease); }
.chips label:hover span { box-shadow: inset 0 0 0 1px var(--muted); }
.chips input:checked + span { background: var(--lime); color: var(--lime-ink); box-shadow: none; transform: scale(1.04); }
.chips input:focus-visible + span { outline: 2px solid var(--lime); outline-offset: 3px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { position: relative; display: block; }
.field input, .field textarea {
  width: 100%; padding: 26px 0 10px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink);
  font: 400 1.05rem var(--body); resize: vertical; outline: none; transition: border-color 0.3s;
}
.field > span { position: absolute; left: 0; top: 24px; color: var(--muted); pointer-events: none; transition: transform 0.35s var(--ease), color 0.3s, font-size 0.35s; transform-origin: left; }
.field input:focus ~ span, .field input:not(:placeholder-shown) ~ span,
.field textarea:focus ~ span, .field textarea:not(:placeholder-shown) ~ span { transform: translateY(-22px) scale(0.78); color: var(--lime); }
.field::after { content: ''; position: absolute; left: 0; right: 0; top: calc(100% - 1px); height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.field:focus-within::after { transform: scaleX(1); }
.field textarea ~ span { top: 24px; }
.field:has(textarea)::after { top: auto; bottom: 6px; }

.drop {
  position: relative; display: flex; align-items: center; gap: 18px; padding: 22px; border-radius: 16px;
  border: 1px dashed rgba(244, 244, 239, 0.25); cursor: pointer; transition: border-color 0.3s, background 0.3s;
}
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop:hover, .drop.is-over { border-color: var(--lime); background: rgba(152, 248, 72, 0.05); }
.drop.has-file { border-style: solid; border-color: var(--lime); }
.drop__icon { flex: none; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(152, 248, 72, 0.12); color: var(--lime); font-size: 1.4rem; transition: transform 0.4s var(--ease); }
.drop:hover .drop__icon, .drop.is-over .drop__icon { transform: translateY(-4px); }
.drop__text small { color: var(--muted); }
.form__err { display: block; min-height: 0; color: #ff7a7a; font-size: 0.82rem; margin-top: 6px; }
.form__err:empty { display: none; }
.form__submit { justify-self: start; }
.form__submit[disabled] { opacity: 0.6; pointer-events: none; }
.form__status { margin: 0; color: var(--lime); min-height: 1.5em; }
.form__status.is-error { color: #ff7a7a; }

/* ---------- Footer ---------- */
.footer { position: relative; overflow: hidden; padding: clamp(80px, 12vw, 160px) var(--gutter) 28px; border-top: 1px solid var(--line); }
.footer__glow { position: absolute; left: 50%; bottom: -40vw; width: 110vw; height: 70vw; translate: -50% 0; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 16, 136, 0.9), rgba(42, 69, 255, 0.25) 50%, transparent); pointer-events: none; }
.footer__eyebrow { position: relative; margin: 0 0 20px; font: 500 0.78rem var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); }
.footer__huge {
  position: relative; display: flex; align-items: center; gap: 0.18em; flex-wrap: wrap;
  font: 300 clamp(3rem, 10.5vw, 13rem)/0.9 var(--display); letter-spacing: -0.05em;
}
.footer__huge > span:not(.switch) { transition: transform 0.6s var(--ease), color 0.4s; }
.footer__huge:hover > span:first-child { transform: translateX(-0.06em); }
.footer__huge:hover > span:last-child { transform: translateX(0.06em); color: var(--lime); }
.switch--footer { --w: 1.4em; --h: 0.62em; color: var(--ink); }
.switch--footer.is-on, .footer__huge:hover .switch--footer { background: var(--lime); box-shadow: inset 0 0 0 0.045em var(--lime), 0 0 0.6em rgba(152, 248, 72, 0.4); }
.switch--footer.is-on .switch__knob, .footer__huge:hover .switch--footer .switch__knob { transform: translateX(calc(var(--w) - var(--h))); background: var(--lime-ink); }

.footer__cols { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: clamp(48px, 7vw, 100px); padding-top: 32px; border-top: 1px solid var(--line); }
.footer h4 { margin: 0 0 12px; font: 500 0.72rem var(--display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.footer__cols a { font-size: 1.05rem; line-height: 1.7; background: linear-gradient(var(--lime), var(--lime)) 0 100% / 0 1px no-repeat; transition: background-size 0.5s var(--ease), color 0.3s; }
.footer__cols a:hover { background-size: 100% 1px; color: var(--lime); }
.footer__brands { list-style: none; margin: 0; padding: 0; columns: 2; }
.footer__base { position: relative; display: flex; justify-content: space-between; margin-top: 60px; font-size: 0.85rem; color: var(--muted); }
.footer__top:hover { color: var(--lime); }

/* ---------- Reveal helpers (JS agrega .is-in) ---------- */
.js .reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal-up.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .about__grid { grid-template-columns: repeat(3, 1fr); }
  .about__side { grid-column: 1 / -1; justify-self: start; }
  .feed__grid { grid-template-columns: repeat(3, 1fr); }
  .jobs { grid-template-columns: 1fr; }
  .jobs__side { position: static; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__logo img { width: 46px; height: 46px; }
  .hero__title { justify-items: center; font-size: 12vw; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { display: none; }
  .mv { grid-template-columns: 1fr; }
  .mv__card { min-height: 220px; }
  .values__list { grid-template-columns: 1fr 1fr; }
  .values__list li:nth-child(n) { padding-left: 8px; border-left: 0; }
  .values__list li:nth-child(2n) { padding-left: 16px; border-left: 1px solid var(--line); }
  .switch--sm { font-size: 1rem; }

  /* Marcas: stack vertical, sin pin */
  .brands { padding-bottom: 40px; }
  .brands__drag { display: none; }
  .brands__pin { height: auto; overflow: visible; display: block; padding-top: 32px; }
  .brands__track { flex-direction: column; transform: none !important; }
  .brand { width: 100%; height: auto; grid-template-columns: 1fr; }
  .brand__visual { aspect-ratio: 16 / 10; }
  .brand__logo { width: 62%; }
  .brand__body { border-left: 0; border-top: 1px solid var(--line); }
  .brand__tagline { margin-top: 0; }
  .brands__progress { display: none; }

  .feed__grid { grid-template-columns: 1fr 1fr; }
  .feed__tabs { border-radius: 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__cols > div:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .grain { display: none; }
}
