/* Acenza — Modern dynamic site
   ---------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--acenza-norte);
  color: var(--acenza-pleno);
  overflow-x: hidden;
}
@media (max-width: 900px) { body { cursor: auto; } }

/* Accessibility — focus visible states */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--acenza-impulso);
  outline-offset: 3px;
  border-radius: 2px;
}
.hdr.is-dark *:focus-visible,
.team *:focus-visible,
.tensions *:focus-visible,
.hero--horizontal *:focus-visible,
.hero--mobile *:focus-visible,
.cnt-strip *:focus-visible {
  outline-color: var(--acenza-pausa);
}

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 12px 18px;
  z-index: 10000;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--acenza-pausa);
  outline-offset: 2px;
}

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

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--acenza-impulso);
  pointer-events: none; z-index: 9999;
  transition: transform 0.18s var(--ease-standard), width 0.22s var(--ease-standard), height 0.22s var(--ease-standard), background 0.22s;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor.is-link { width: 56px; height: 56px; background: var(--acenza-pausa); }
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--acenza-impulso);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* Scroll progress */
.scroll-prog {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100;
  background: linear-gradient(90deg, var(--acenza-impulso), var(--acenza-pausa));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ------ Header ------ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding: 18px 36px;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  background: rgba(235, 234, 219, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,16,16,0.08);
}
.hdr.is-scrolled {
  background: rgba(235, 234, 219, 0.85);
}
.hdr.is-dark { color: var(--acenza-norte); background: rgba(16,16,16,0.55); border-bottom-color: rgba(235,234,219,0.08); }
.hdr.is-dark.is-scrolled { background: rgba(16,16,16,0.7); }
.hdr__brand { display: inline-flex; align-items: center; gap: 12px; }
.hdr__iso { height: 36px; width: auto; }
.hdr__nav { display: flex; gap: 28px; justify-content: center; font-size: 18px; }
.hdr__nav a {
  color: inherit; cursor: pointer; position: relative;
  padding: 6px 2px;
  display: inline-flex; gap: 6px; align-items: baseline;
}
.hdr__nav a .num {
  font-family: var(--font-mono); font-size: 10px; opacity: 0.5;
}
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s var(--ease-standard);
}
.hdr__nav a:hover::after, .hdr__nav a.is-active::after { transform: scaleX(1); }
.hdr__social {
  display: flex; align-items: center; gap: 16px;
}
.hdr__social a {
  display: inline-flex; align-items: center; justify-content: center;
  color: inherit; opacity: 0.6;
  transition: opacity var(--dur-fast) var(--ease-standard);
}
.hdr__social a:hover { opacity: 1; }
/* Language toggle (ES · EN) */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
}
.lang-toggle__opt {
  color: inherit; opacity: 0.5; text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
a.lang-toggle__opt:hover { opacity: 0.85; }
.lang-toggle__opt.is-active { opacity: 1; color: var(--acenza-impulso); font-weight: 500; }
.hdr.is-dark .lang-toggle__opt.is-active { color: var(--acenza-pausa); }
.lang-toggle__sep { opacity: 0.35; }
/* In the mobile menu (dark overlay) */
.lang-toggle--mob { font-size: 14px; color: var(--acenza-norte); margin-bottom: 4px; }
.lang-toggle--mob .lang-toggle__opt.is-active { color: var(--acenza-pausa); }
.hdr__cta {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  padding: 11px 22px; border-radius: 0;
  background: var(--acenza-pleno); color: var(--acenza-norte);
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.hdr__cta:hover { background: var(--acenza-impulso); transform: translateY(-1px); }
.hdr.is-dark .hdr__cta { background: var(--acenza-norte); color: var(--acenza-pleno); }
.hdr.is-dark .hdr__cta:hover { background: var(--acenza-pausa); }
/* Mobile burger */
.hdr__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: 0; cursor: pointer; padding: 4px;
  color: inherit;
}
.hdr__burger span {
  display: block; height: 1.5px; width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease-standard), opacity 0.3s;
  transform-origin: center;
}
.hdr__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mob-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  display: flex; flex-direction: column;
  padding: 100px 32px 48px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-standard);
}
.mob-menu.is-open { opacity: 1; pointer-events: all; }
.mob-menu__nav {
  display: flex; flex-direction: column;
  gap: 4px; flex: 1;
}
.mob-menu__nav a {
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--acenza-norte);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(235,234,219,0.1);
  display: flex; align-items: center; justify-content: space-between;
  transition: opacity 0.2s;
}
.mob-menu__nav a:hover { opacity: 0.6; }
.mob-menu__nav a .mob-arrow { font-size: 22px; opacity: 0.4; }
.mob-menu__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(235,234,219,0.1);
}
.mob-menu__social { display: flex; gap: 20px; }
.mob-menu__social a { color: var(--acenza-norte); opacity: 0.6; display: inline-flex; }
.mob-menu__social a:hover { opacity: 1; }
.mob-menu__cta {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  padding: 11px 22px;
  background: var(--acenza-pausa); color: var(--acenza-pleno);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}

@media (max-width: 1100px) {
  .hdr__nav { display: none; }
  .hdr__social { display: none; }
  .hdr__cta { display: none; }
  .hdr > .lang-toggle { display: none; }
  .hdr__burger { display: flex; justify-self: end; }
  .hdr { grid-template-columns: auto 1fr; padding: 14px 20px; }
}

/* ------ Hero ------ */
@property --hero-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 135deg;
}
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(var(--hero-angle), var(--acenza-impulso) 0%, var(--acenza-pausa) 100%);
  color: var(--acenza-norte);
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 36px 80px;
  /* Page-load fade in + slow ambient "breathing" of the gradient angle. */
  animation: heroIn 0.5s ease both, heroBreath 14s ease-in-out 0.5s infinite;
}
@keyframes heroBreath {
  0%, 100% { --hero-angle: 135deg; }
  50%      { --hero-angle: 150deg; }
}
.hero__badge {
  position: absolute;
  z-index: 3;
  top: 104px;
  right: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(235, 234, 219, 0.85);
  opacity: 0;
  animation: badgeIn 0.55s var(--ease-emph) 1.3s both;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--acenza-norte);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 0.85; transform: translateY(0); }
}
@media (max-width: 900px) {
  .hero__badge { top: 84px; right: 24px; }
}
@property --mx {
  syntax: '<length-percentage>';
  inherits: false;
  initial-value: 50%;
}
@property --my {
  syntax: '<length-percentage>';
  inherits: false;
  initial-value: 50%;
}
.hero__cursor-grid,
.tensions__cursor-grid,
.team__cursor-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='132' height='132' shape-rendering='crispEdges'><path d='M0 0 H132 M0 0 V132' stroke='rgb(189,188,176)' stroke-width='1' fill='none'/></svg>");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 132px 132px;
  --mx: 50%;
  --my: 50%;
  --tx: 0px; --ty: 0px; --tw: 0px; --th: 0px;
  --spot: 320px;
  --safe-top: 76px;
  /* Hard-edged square spotlight around (mx, my) — no gradient fade, in or out.
     The top inset is clamped to --safe-top so the spotlight never bleeds behind the
     fixed header that overlays the top strip of each section. */
  clip-path: inset(
    max(var(--safe-top), calc(var(--my) - var(--spot) / 2))
    calc(100% - var(--mx) - var(--spot) / 2)
    calc(100% - var(--my) - var(--spot) / 2)
    calc(var(--mx) - var(--spot) / 2)
  );
  /* Knockout-only mask: kept area = everywhere except the text rect. */
  -webkit-mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  -webkit-mask-position: 0 0, var(--tx) var(--ty);
  mask-position: 0 0, var(--tx) var(--ty);
  -webkit-mask-size: 100% 100%, var(--tw) var(--th);
  mask-size: 100% 100%, var(--tw) var(--th);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
}
/* Overlay that hides the grid behind specific text regions (e.g. the Tensions slider). */
.tensions__cursor-knockout {
  position: absolute;
  background: var(--acenza-pleno);
  z-index: 1;
  pointer-events: none;
}
/* When the mouse is idle on the Hero / Team, the spotlight follows the CSS keyframes path.
   The mousemove handler removes this class to track the cursor instead. */
.hero__cursor-grid.is-idle,
.team__cursor-grid.is-idle {
  opacity: 1;
  animation: cursorSpotPath 14s ease-in-out infinite;
}
/* Tensions / Team: align lines to the GridDivider at the bottom so they encajan en continuidad.
   These sections are only reached via scrolling, so the section's top is always below the
   fixed header — no safe-top reservation needed; the grid can rise all the way to section top. */
.tensions__cursor-grid,
.team__cursor-grid {
  background-position: 0 100%;
  --safe-top: 0px;
}
.hero__cursor-cell,
.tensions__cursor-cell,
.team__cursor-cell {
  position: absolute;
  width: 132px;
  height: 132px;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
/* Touch devices: no mouse, so animate the spotlight along a path for continuous reveal. */
@media (hover: none) and (pointer: coarse) {
  .hero__cursor-grid,
  .tensions__cursor-grid,
  .team__cursor-grid {
    opacity: 1;
    animation: cursorSpotPath 14s ease-in-out infinite;
    --spot: 220px;
  }
}
/* Mobile: align cursor grid with the smaller --unit used by the GridDivider. */
@media (max-width: 900px) {
  .hero__cursor-grid,
  .tensions__cursor-grid,
  .team__cursor-grid {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='88' height='88' shape-rendering='crispEdges'><path d='M0 0 H88 M0 0 V88' stroke='rgb(189,188,176)' stroke-width='1' fill='none'/></svg>");
    background-size: 88px 88px;
  }
}
@keyframes cursorSpotPath {
  0%   { --mx: 18%; --my: 28%; }
  20%  { --mx: 78%; --my: 22%; }
  40%  { --mx: 88%; --my: 65%; }
  60%  { --mx: 50%; --my: 88%; }
  80%  { --mx: 14%; --my: 70%; }
  100% { --mx: 18%; --my: 28%; }
}

/* Hero --statement: benefit-driven statement with rotating verbs */
.hero--statement {
  min-height: 100svh;
  padding: 160px 132px 100px;
  justify-content: center;
}
.hero--statement .hero__statement-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(235, 234, 219, 0.7);
  opacity: 0;
  animation: wordRise 0.6s var(--ease-emph) 0.15s both;
}
.hero__statement {
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: var(--fw-regular);
  color: var(--acenza-norte);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}
.hero__statement-prefix {
  display: block;
  opacity: 0;
  animation: wordRise 0.85s var(--ease-emph) 0.3s both;
}
/* English copy runs longer than Spanish; scale the statement down on desktop
   so the rotating phrases fit on one line without clipping. Mobile (<=900px)
   already wraps, so it's left untouched. */
@media (min-width: 901px) {
  html[lang="en"] .hero__statement { font-size: clamp(44px, 5.8vw, 96px); }
}
.hero--statement .hero__cta-inline {
  position: static;
  align-self: flex-start;
  opacity: 0;
  animation: ctaIn 0.6s ease 1.1s both;
}
.hero--statement .hero__scroll {
  top: auto;
  bottom: 48px;
}

/* Rotating word — spring-like vertical slide between options */
.hero__rotating {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--acenza-norte);
  opacity: 0;
  animation: wordRise 0.85s var(--ease-emph) 0.55s both;
}
.hero__rotating-accent {
  font-style: normal;
}
.hero__rotating-ghost {
  visibility: hidden;
  display: block;
}
.hero__rotating-item {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(150%);
  /* Smooth ease-out, no overshoot (avoids the bounce that cropped letters). */
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform, opacity;
}
.hero__rotating-item.is-current {
  opacity: 1;
  transform: translateY(0);
}
.hero__rotating-item.is-past {
  opacity: 0;
  transform: translateY(-150%);
}
.hero__rotating-item.is-future {
  opacity: 0;
  transform: translateY(150%);
}

/* Progress indicator — one dash per phrase, active grows + turns Pausa */
.hero__rotating-progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  align-self: flex-start;
}
.hero__rotating-dash {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: rgba(235, 234, 219, 0.28);
  border: 0;
  padding: 0;
  cursor: pointer;
  box-sizing: content-box;
  transition: background 0.35s var(--ease-standard), width 0.4s var(--ease-emph);
}
.hero__rotating-dash:hover {
  background: rgba(235, 234, 219, 0.55);
}
.hero__rotating-dash.is-on {
  background: var(--acenza-pausa);
  width: 48px;
}

@media (max-width: 900px) {
  .hero--statement {
    padding: 140px 24px 60px;
    /* Align content to top so the button can sit at the bottom of the section. */
    justify-content: flex-start;
  }
  .hero--statement .hero__statement-inner {
    flex: 1 1 auto;
    gap: 28px;
    justify-content: center;
  }
  .hero--statement { position: relative; }
  .hero--statement .hero__cta-inline {
    position: absolute;
    bottom: 60px;
    /* Aligned with the title left edge (the inner container already carries
       the 24px section padding via position:relative). */
    left: 0;
    margin-top: 0;
  }
  .hero__statement {
    font-size: clamp(44px, 12vw, 80px);
  }
  /* Allow the rotating phrase to wrap to multiple lines on narrow screens.
     Looser line-height so descenders (g, y, p) of the last line aren't
     clipped by the container's overflow:hidden. */
  .hero__rotating-item,
  .hero__rotating-ghost {
    white-space: normal;
    line-height: 1.12;
  }
  .hero__rotating-item {
    /* When wrapping is allowed, the absolute item needs its own width frame to
       wrap inside instead of growing rightward. */
    right: 0;
  }
  .hero--statement .hero__cta-inline {
    margin-top: auto;
    align-self: flex-start;
  }
}
.hero--horizontal {
  height: 400vh;
  min-height: 400vh;
  padding: 0;
  display: block;
  overflow: visible;
  background: transparent;
}
.hero--horizontal .hero__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--acenza-gradient);
}
.hero__h-track {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  width: 400vw;
  height: 100vh;
  will-change: transform;
}
.hero__frame {
  flex: 0 0 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 36px 0 132px;
}
.hero__frame-num {
  position: absolute;
  top: 132px;
  left: 132px;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(235,234,219,0.55);
}
.hero__frame:first-child .hero__frame-num {
  opacity: 0;
  animation: wordRise 0.6s var(--ease-emph) 0.15s both;
}
.hero__frame-text {
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: var(--fw-regular);
  margin: 0;
  max-width: 90vw;
  width: fit-content;
  text-wrap: balance;
  color: var(--acenza-norte);
  overflow: hidden;
}
.hero__frame:first-child .hero__frame-text {
  opacity: 0;
  animation: wordRise 0.85s var(--ease-emph) 0.25s both;
}
.hero__frame.is-final .hero__frame-text {
  font-size: clamp(56px, 9vw, 160px);
  font-style: normal;
}
.hero__h-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: indicatorIn 0.7s var(--ease-emph) 0.55s both;
}
@keyframes indicatorIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.hero__h-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acenza-norte);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__h-frac { opacity: 0.85; }
.hero__h-sep { opacity: 0.45; }
.hero__h-name { color: var(--acenza-pausa); }
.hero__h-bars { display: flex; gap: 14px; }
.hero__h-dot {
  width: 28px; height: 2px;
  background: rgba(235,234,219,0.22);
  border: 0; padding: 12px 0; margin: -12px 0;
  background-clip: content-box;
  cursor: pointer;
  transition: background 0.3s var(--ease-standard), width 0.3s var(--ease-standard);
}
.hero__h-dot:hover { background: rgba(235,234,219,0.55); background-clip: content-box; }
.hero__h-dot.is-on {
  background: var(--acenza-pausa);
  background-clip: content-box;
  width: 56px;
}
@media (max-width: 900px) {
  .hero__frame { padding: 0 24px; }
  .hero__frame-num { top: 80px; left: 24px; }
  .hero__frame-text { font-size: clamp(56px, 18vw, 96px); }
}
@keyframes heroIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__bg { display: none; }
.hero__glow { display: none; }
.hero__grid-cells {
  position: absolute; inset: 0;
  display: grid;
  grid-auto-rows: var(--unit);
  align-content: start;
}
.hero__cell {
  transition: background-color 0.6s var(--ease-standard);
}
.hero__cell--0 { background: transparent; }
.hero__cell--1 { background: rgba(122, 227, 220, 0.32); }  /* Pausa */
.hero__cell--2 { background: rgba(112, 23, 226, 0.55); }   /* Impulso */
.hero__cell--3 { background: rgba(235, 234, 219, 0.10); }  /* Norte tint */
@media (max-width: 900px) {
  .hero__grid { --unit: 88px; }
}

.hero__noise {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.06; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
/* Blobs removidos — el gradiente de fondo ya provee profundidad de color */
.hero__blob { display: none; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-30px, 40px) scale(0.96); }
}

.hero__isologo {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  height: 143vh;
  width: auto;
  pointer-events: none;
  user-select: none;
  transform: translateY(-50%) translateX(50%) scale(1);
  opacity: 0.16;
  animation: isoloIn 1.1s cubic-bezier(0.22,1,0.36,1) 0s both;
}
/* Desktop statement hero uses an inline SVG that animates its own draw-in
   via stroke + fill, so we drop the parent fade/scale and let the path fill
   carry the 16% opacity. The transform also exposes a CSS variable for the
   scroll parallax handled in JS. */
.hero--statement .hero__isologo {
  opacity: 1;
  animation: none;
  transform: translate(50%, calc(-50% + var(--hero-iso-y, 0px))) scale(1);
  will-change: transform;
}
@keyframes isoloIn {
  from { transform: translateY(-50%) translateX(50%) scale(0.85); opacity: 0; }
  to   { transform: translateY(-50%) translateX(50%) scale(1); opacity: 0.16; }
}
.hero__inner {
  position: relative; z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero__meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.7;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(235,234,219,0.15);
}
.hero__meta .live { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .live::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: var(--acenza-pausa);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(235,234,219,0.55);
  display: block;
  animation: wordRise 0.7s var(--ease-emph) 0.05s both;
}
.hero__title {
  font-size: var(--fs-hero);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: var(--fw-regular);
  margin: 0;
  display: flex; flex-direction: column;
  filter: drop-shadow(0 2px 32px rgba(80,0,180,0.18));
}
.hero__title em {
  font-style: normal;
  color: var(--acenza-norte);
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.hero__title .word .inner {
  display: inline-block;
  animation: wordRise 0.9s var(--ease-emph) both;
}
.hero__title .word.w2 { padding-left: 0.08em; margin-left: -0.08em; }
.hero__title .word.w2 .inner { animation-delay: 0.12s; }
@keyframes wordRise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero__subtitle {
  margin: 28px 0 0;
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  letter-spacing: -0.025em;
  color: rgba(235,234,219,0.78);
  line-height: 1.1;
  max-width: 720px;
}
.hero__subtitle em { font-style: normal; color: var(--acenza-norte); }
.hero__subtitle .word { overflow: hidden; display: inline-block; }
.hero__subtitle .inner { display: inline-block; animation: wordRise 0.9s var(--ease-emph) 0.42s both; }

.hero__descriptor {
  display: flex; gap: 12px; align-items: baseline;
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  letter-spacing: -0.025em;
  color: rgba(235,234,219,0.92);
}
.hero__descriptor .word { overflow: hidden; display: inline-block; }
.hero__descriptor .inner { display: inline-block; animation: wordRise 0.9s var(--ease-emph) both; }
.hero__descriptor .word.w3 .inner { animation-delay: 0.42s; }
.hero__descriptor .word.w4 .inner { animation-delay: 0.54s; }
.hero__descriptor .word.w5 .inner { animation-delay: 0.66s; }

.hero__sep {
  display: inline-block;
  width: 0.4em; height: 0.18em;
  background: var(--acenza-pausa);
  margin: 0 0.18em;
  vertical-align: middle;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 36px;
}
@media (max-width: 800px) { .hero__bottom { grid-template-columns: 1fr; } }
.hero__lede {
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  max-width: 520px;
  color: rgba(235,234,219,0.85);
  font-weight: 400;
}
.hero__cta-stack { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hero__title-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero--horizontal .hero__cta-inline {
  position: absolute;
  z-index: 5;
}
.hero__cta-inline {
  position: absolute;
  bottom: 48px;
  left: 36px;
  white-space: nowrap;
  animation: ctaIn 0.6s ease 0.85s both;
}
@keyframes ctaIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--acenza-norte); color: var(--acenza-pleno);
  border: 0; border-radius: 0;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.35s var(--ease-emph);
  will-change: transform;
}
.btn-primary .arrow {
  width: 24px; height: 24px;
  border-radius: 0;
  background: var(--acenza-impulso); color: var(--acenza-norte);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform 0.3s var(--ease-emph);
}
.btn-primary:hover { background: var(--acenza-pausa); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-primary:active { transform: scale(0.97) !important; transition: transform 0.12s ease; }

/* Magnetic-friendly transition for header CTA and email arrow */
.hdr__cta { transition: transform 0.35s var(--ease-emph), background 0.2s, color 0.2s; will-change: transform; }
.contact__mail .arrow { will-change: transform; }

.hero__scroll {
  position: absolute; top: 64%; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acenza-norte);
  opacity: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: scrollIn 0.6s ease 0.7s both;
}
@keyframes scrollIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 0.92; transform: translate(-50%, 0); }
}
.hero__scroll .line {
  width: 2px; height: 64px; background: rgba(235,234,219,0.28);
  position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--acenza-pausa);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(110%); }
}


@media (max-width: 800px) {
  .hero:not(.hero--horizontal):not(.hero--mobile) {
    padding: 100px 24px 60px;
    justify-content: center;
  }
  .hero__title { font-size: clamp(38px, 11vw, 72px); }
  .hero__cta-inline { left: 24px; bottom: 40px; }
  .hero__title-layout { gap: 14px; }
  .hero__inner { max-width: 100%; }
  .hero__isologo { height: 100vh; right: 0; }
}

/* Disable initial isologo scale-in animation on all mobile widths (prevents L→R visual jump) */
@media (max-width: 900px) {
  .hero__isologo {
    animation: none !important;
    opacity: 0.16 !important;
    transform: translateY(-50%) translateX(50%) scale(1) !important;
  }
  /* Home hero uses an inline SVG whose path already carries the 16% fill
     opacity — keep the parent at 1 so it doesn't get dimmed twice. */
  .hero--statement .hero__isologo {
    opacity: 1 !important;
  }
}

/* ------ Marquee ticker ------ */
.ticker {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(235,234,219,0.08);
  border-bottom: 1px solid rgba(235,234,219,0.08);
}
.ticker__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.ticker__item {
  font-size: clamp(14px, 1.51vw, 28px);
  font-weight: 400; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 36px;
}
.ticker__item .star {
  color: var(--acenza-pausa);
}
.ticker__item .em { color: var(--acenza-pausa); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------ Section base ------ */
.section { padding: 120px 36px; position: relative; }
.section__head {
  max-width: 1400px; margin: 0 auto 64px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: end;
}
.section__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.55;
  display: inline-flex; align-items: center; gap: 10px;
}
.section__eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.section__title {
  font-size: var(--fs-display);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 14ch;
  grid-column: 1 / -1;
  margin: 0;
}
.section__title em { font-style: normal; color: var(--acenza-impulso); }
.section__title .pausa { color: var(--acenza-impulso); position: relative; display: inline-block; }
.section__intro {
  font-size: 17px; line-height: 1.55;
  max-width: 380px; opacity: 0.7;
  grid-column: 3 / 4; align-self: end;
  justify-self: end;
}
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; }
  .section__intro { grid-column: 1; justify-self: start; }
}

/* Animated reveal text */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-emph), transform 0.9s var(--ease-emph);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: 0.1s; }
.reveal-d3 { transition-delay: 0.2s; }
.reveal-d4 { transition-delay: 0.3s; }

/* ------ About / Intro section ------ */
.intro {
  --unit: 132px; /* unidad base de la grilla — todo debe ser múltiplo de este valor */
  background: var(--acenza-norte);
  padding: var(--unit);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.intro__bg-grid {
  position: absolute;
  left: 0; right: 0; top: 0;
  /* Stop the grid where the cards end — no trailing rows */
  bottom: 132px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Single-layer SVG grid: avoids alpha-stacking at intersections that read as
     interrupted vertical lines on Retina displays. */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='132' height='132' shape-rendering='crispEdges'><path d='M0 0 H132 M0 0 V132' stroke='rgb(189,188,176)' stroke-width='1' fill='none'/></svg>");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: var(--unit) var(--unit);
}
.intro__inner { position: relative; z-index: 1; }
.intro__big {
  font-size: var(--fs-h1);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
  width: min(calc(9 * var(--unit)), 100%);
  padding: calc(var(--unit) / 2);          /* 52px de aire en los 4 bordes, dentro del box */
  margin: 0 0 var(--unit);
  background: var(--acenza-norte);
  border: 1px solid rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
  /* paddingBottom ajustado dinámicamente via JS para que la altura sea múltiplo exacto de --unit */
}
.intro__big em { font-style: normal; color: var(--acenza-impulso); }
.intro__big .hl {
  background: var(--acenza-pausa);
  padding: 0 0.1em;
  display: inline-block;
}

.intro__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; margin-top: 40px;
}
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro { padding-right: 0; }
}
@media (max-width: 900px) {
  .intro {
    --unit: 88px;
    padding: var(--unit) 16px 48px 16px;
  }
  .intro__big {
    font-size: clamp(20px, 4.4vw, 32px);
    width: 100%;
    padding: 20px;
    margin-bottom: 24px;
  }
  .intro__grid { gap: 12px; margin-top: 0; }
}
.intro__card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; min-height: 280px;
  border: 1px solid rgba(16,16,16,0.06);
  transition: transform 0.4s var(--ease-emph);
}
.intro__card:hover { transform: translateY(-6px); }
.intro__card-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; opacity: 0.55;
}
.intro__card h3 {
  font-size: 28px; font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em; margin: 0;
}
.intro__card p { font-size: 16px; line-height: 1.55; opacity: 0.85; margin: 0; }
.intro__card .corner {
  position: absolute; right: 24px; bottom: 24px;
  width: 0; height: 0;
  /* Desktop: triangle pointing RIGHT (→) — flow into next card */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid currentColor;
  opacity: 0.85;
  transition: transform 0.3s var(--ease-emph);
}
.intro__card:hover .corner { transform: translateX(4px); }
@media (max-width: 900px) {
  .intro__card .corner {
    /* Mobile: triangle pointing DOWN (↓) — flow into next stacked card */
    border-top: 14px solid currentColor;
    border-bottom: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
  .intro__card:hover .corner { transform: translateY(4px); }
}

/* Trinidad cromática: cada pilar de la marca con su color del manual */
.intro__card--01 {
  background: var(--acenza-impulso);
  color: var(--acenza-norte);
  border-color: transparent;
}
.intro__card--01 .corner { border-left-color: var(--acenza-pausa); opacity: 1; }

.intro__card--02 {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  border-color: transparent;
}
.intro__card--02 .corner { border-left-color: var(--acenza-pausa); opacity: 1; }

.intro__card--03 {
  background: var(--acenza-pausa);
  color: var(--acenza-pleno);
  border-color: transparent;
}
.intro__card--03 .corner { border-left-color: var(--acenza-impulso); opacity: 1; }

/* Mobile (triangle pointing down): override targets the top border instead */
@media (max-width: 900px) {
  .intro__card--01 .corner { border-top-color: var(--acenza-pausa); border-left-color: transparent; }
  .intro__card--02 .corner { border-top-color: var(--acenza-pausa); border-left-color: transparent; }
  .intro__card--03 .corner { border-top-color: var(--acenza-impulso); border-left-color: transparent; }
}

/* ------ Tensions slider ------ */
.tensions {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 88px 36px 0;
  border-top: 1px solid rgba(235,234,219,0.1);
  position: relative;
  overflow: hidden;
}
.tensions > .grid-divider {
  margin: 72px -36px 0;
}
.tensions__bg {
  position: absolute; left: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--acenza-impulso), transparent 65%);
  filter: blur(100px); opacity: 0.5;
  animation: float 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.tensions__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── A. Header destacado ── */
.tensions__header {
  margin-bottom: 32px;
}
.tensions__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(235,234,219,0.55);
  margin-bottom: var(--sp-4);
}
.tensions__section-title {
  font-size: clamp(28px, 4vw, 62px);
  font-weight: var(--fw-regular);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--sp-5);
  max-width: none;
  color: var(--acenza-norte);
}
.tensions__section-title em {
  font-style: normal;
  color: var(--acenza-pausa);
}
.tensions__section-sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: rgba(235,234,219,0.7);
  max-width: 60ch;
  margin: 0;
}

/* ── Track / Slides ── */
.tensions__track {
  position: relative;
  overflow: hidden;
}
.tensions__track-inner {
  display: flex;
  transition: transform 0.38s var(--ease-emph);
  will-change: transform;
}
.tensions__slide {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

.tensions__left {
  display: flex; flex-direction: column; gap: 12px;
  padding-right: 56px;
  border-right: 1px solid rgba(235,234,219,0.18);
  align-self: stretch;
  justify-content: center;
}
.tensions__stat {
  font-size: clamp(72px, 8vw, 132px);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.08em;
  color: var(--acenza-pausa);
}
.tensions__stat-desc {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--acenza-norte);
  opacity: 0.85;
  margin: 0;
  max-width: 300px;
}
.tensions__source {
  font-family: var(--font-mono); font-size: var(--fs-micro);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: rgba(235,234,219,0.4);
}

.tensions__right {
  display: flex; flex-direction: column; gap: 18px;
}
.tensions__headline {
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-title);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  color: var(--acenza-norte);
}
.tensions__divider {
  width: 32px; height: 1px;
  background: var(--acenza-pausa);
}
.tensions__answer-label {
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acenza-pausa);
  margin-bottom: 12px;
}
.tensions__body {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: rgba(235,234,219,0.85);
  margin: 0;
  max-width: 520px;
}

/* ── E + C. Footer: indicator (labels + progress) + arrows ── */
.tensions__footer {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(235,234,219,0.15);
}
.tensions__indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  flex: 1;
  max-width: 720px;
}
.tensions__step {
  background: none;
  border: none;
  border-left: 1px solid rgba(235,234,219,0.18);
  padding: 4px 20px 0;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: rgba(235,234,219,0.55);
  transition: color var(--dur-fast) var(--ease-standard);
}
.tensions__step:first-child { border-left: none; padding-left: 0; }
.tensions__step:hover { color: var(--acenza-norte); }
.tensions__step.is-active { color: var(--acenza-norte); }
.tensions__step-num {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: var(--tracking-wide);
  color: var(--acenza-pausa);
}
.tensions__step-label {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
}
.tensions__step.is-active .tensions__step-label { font-weight: var(--fw-bold); }
.tensions__step-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(235,234,219,0.15);
  margin-top: 12px;
  overflow: hidden;
}
.tensions__step-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--acenza-pausa);
  transform: scaleX(0);
  transform-origin: left;
}
.tensions__step.is-active .tensions__step-fill {
  transform: scaleX(1);
  transition: transform 0.4s var(--ease-emph);
}
.tensions__step.is-active .tensions__step-fill.is-running {
  animation: tensionFill 5s linear forwards;
}
@keyframes tensionFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.tensions__nav-ctrl {
  display: flex; align-items: flex-end; gap: 8px;
  flex-shrink: 0;
}
.tensions__arrow {
  background: none;
  border: 1px solid rgba(235,234,219,0.25);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  color: var(--acenza-norte);
  font-family: var(--font-mono);
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast), border-color var(--dur-fast);
}
.tensions__arrow:hover {
  background: var(--acenza-pausa);
  color: var(--acenza-pleno);
  border-color: var(--acenza-pausa);
}

@media (max-width: 900px) {
  .tensions { padding: 80px 24px 0; }
  .tensions > .grid-divider { margin: 72px -24px 0; }
  .tensions__header { margin-bottom: 56px; }
  .tensions__slide {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tensions__left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(235,234,219,0.15);
    padding-bottom: 40px;
  }
  .tensions__stat { font-size: clamp(72px, 18vw, 120px); }
  .tensions__headline { font-size: clamp(26px, 6vw, 40px); }
  .tensions__footer { flex-direction: column; gap: 20px; align-items: stretch; }
  .tensions__indicator { max-width: 100%; }
  .tensions__step { padding: 4px 12px 0; }
  .tensions__step-label { font-size: 14px; }
  .tensions__nav-ctrl { justify-content: flex-end; }
}

/* ------ Services ------ */
.services {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 80px 36px;
  position: relative;
  overflow: hidden;
}
.services__bg {
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--acenza-impulso), transparent 65%);
  filter: blur(100px); opacity: 0.5;
  animation: float 30s ease-in-out infinite;
}
.services__inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

.services__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services__lead {
  display: flex; flex-direction: column; gap: 24px;
}
.services__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
}
.services__title em { font-style: normal; color: var(--acenza-impulso); }
.services__body {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: rgba(235,234,219,0.6);
  max-width: 420px;
}
.services__list {
  border-top: 1px solid rgba(235,234,219,0.15);
  align-self: center;
}
.svc__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(235,234,219,0.15);
}
.svc__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; opacity: 0.4;
  grid-row: 1; padding-top: 4px;
}
.svc__name {
  font-size: var(--fs-h2);
  font-weight: var(--fw-regular);
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  grid-row: 1;
}
.svc__desc {
  font-size: var(--fs-body-sm);
  color: rgba(235,234,219,0.5);
  line-height: var(--lh-body);
  grid-column: 2; grid-row: 2;
}

@media (max-width: 900px) {
  .services__layout { grid-template-columns: 1fr; gap: 48px; }
  .services__body { max-width: 100%; }
  .services { padding: 64px 24px; }
}

/* ------ Manifesto band (sticky scroll text) ------ */
.manifesto {
  position: relative;
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 0;
  min-height: 200vh;
}
.manifesto__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--acenza-pleno);
}
.manifesto__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.05; mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.manifesto__text {
  position: relative; z-index: 2;
  font-size: clamp(52px, 5.4vw, 96px);
  line-height: 1.08; letter-spacing: -0.025em;
  text-align: center;
  max-width: 1600px; padding: 0 48px;
  font-weight: 400;
}
.manifesto__text .w {
  transition: color 0.4s var(--ease-standard);
  display: inline;
  color: var(--acenza-norte);
}
.manifesto__text .w.hl { color: var(--acenza-pausa); }
.manifesto__text .w.dim { color: rgba(235,234,219,0.15); }
.manifesto__text .w.hl.dim { color: rgba(122,227,220,0.18); }
.manifesto__text em {
  font-style: normal;
  color: inherit;
  display: inline-block;
}

/* ------ Process visual ------ */
.process {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 160px 36px;
  position: relative;
  overflow: hidden;
}
.process__inner { max-width: 1400px; margin: 0 auto; position: relative; }
.process .section__intro { color: rgba(235,234,219,0.6); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(235,234,219,0.1);
  margin-top: 40px;
}
.process__step {
  background: var(--acenza-pleno);
  padding: 40px 28px 36px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
  position: relative;
  transition: background 0.4s var(--ease-emph);
  cursor: pointer;
}
.process__step:hover { background: #1A0F2E; }
.process__step:nth-child(1):hover { background: rgba(112,23,226,0.95); }
.process__step:nth-child(2):hover { background: rgba(122,227,220,0.95); color: var(--acenza-pleno); }
.process__step:nth-child(3):hover { background: var(--acenza-norte); color: var(--acenza-pleno); }
.process__step:nth-child(4):hover { background: linear-gradient(180deg, var(--acenza-impulso), var(--acenza-pausa)); color: var(--acenza-pleno); }

.process__step-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; opacity: 0.55;
  display: flex; justify-content: space-between;
}
.process__step-glyph {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-top: auto;
}
.process__step-glyph svg { width: 100%; height: 100%; }
.process__step-verb {
  font-size: 32px; font-weight: 400; letter-spacing: -0.015em;
  line-height: 1.05;
  font-style: normal;
}
.process__step-copy { font-size: 14px; line-height: 1.5; opacity: 0.78; }
.process__step-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.55;
}
@media (max-width: 900px) { .process__steps { grid-template-columns: 1fr 1fr; } }

/* ------ Marquee ------ */
.bigtext {
  background: var(--acenza-norte);
  padding: 80px 0;
  overflow: hidden;
}
.bigtext__track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-size: clamp(60px, 10vw, 180px);
  font-weight: 400; letter-spacing: -0.04em;
  line-height: 1;
}
.bigtext__track .em {
  color: var(--acenza-impulso);
  font-style: normal;
}
.bigtext__track .s {
  color: var(--acenza-pleno); opacity: 0.1;
  -webkit-text-stroke: 1px var(--acenza-pleno);
  color: transparent;
}

/* ------ Industries grid ------ */
.industries {
  background: var(--acenza-norte);
  padding: 160px 36px 120px;
}
.industries__inner { max-width: 1400px; margin: 0 auto; }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16,16,16,0.12);
  border: 1px solid rgba(16,16,16,0.12);
}
.ind {
  background: var(--acenza-norte);
  padding: 28px 24px;
  min-height: 220px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}
.ind:hover { background: var(--acenza-impulso); color: var(--acenza-norte); }
.ind:nth-child(2):hover { background: var(--acenza-pausa); color: var(--acenza-pleno); }
.ind:nth-child(4n+3):hover { background: var(--acenza-pleno); color: var(--acenza-norte); }
.ind:nth-child(4n):hover { background: var(--acenza-pausa); color: var(--acenza-pleno); }
.ind__n { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.5; }
.ind__name { font-size: 26px; font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; margin-top: auto; }
.ind__hint {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 14px;
  display: inline-flex; gap: 8px; align-items: center;
}
.ind:hover .ind__hint { opacity: 0.9; transform: none; }
@media (max-width: 900px) { .industries__grid { grid-template-columns: 1fr 1fr; } }

/* ------ Team / About ------ */
.team {
  background: var(--acenza-pleno);
  color: var(--acenza-norte);
  padding: 32px 0 0;
  position: relative; overflow: hidden;
}
.team__photo {
  position: relative; z-index: 1;
  width: 100%; margin: 0;
  /* Pre-cropped asset (team-photo-nosotros.webp, 1452×965): gradient square
     excluded on the left, brand squares flush to the top and right edges. */
  aspect-ratio: 1452 / 965;
  overflow: hidden;
}
.team__photo img {
  width: 100%; height: 100%;
  /* Pre-cropped asset already framed exactly — no extra crop needed. */
  object-fit: cover; object-position: center;
  display: block;
}
.team__photo-pin {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--acenza-norte); color: var(--acenza-pleno);
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; gap: 8px; align-items: center;
}
.team__photo-pin .dot {
  width: 6px; height: 6px; background: var(--acenza-impulso);
  border-radius: 999px;
}
.team__inner {
  position: relative; z-index: 1;
  display: grid;
  /* Photo column wider so the image fills the empty space on the right;
     copy column stays comfortably above the widest title word. */
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  /* Copy aligns with the cards above (left). Right padding is tighter so the
     photo extends a bit further toward the screen edge. */
  padding-left: 132px;
  padding-right: 72px;
  align-items: center;
}
.team__photo {
  max-width: none; margin-left: 0;
}
@media (max-width: 900px) {
  .team__photo { max-width: none; margin-left: 0; margin-top: 0; margin-right: 0; }
}
.team__copy { max-width: 740px; justify-self: start; margin-right: 0; }
@media (max-width: 900px) {
  .team__inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .team__copy { max-width: none; justify-self: stretch; margin-right: 0; }
  .team__photo {
    aspect-ratio: 1 / 1;
  }
  .team__photo img {
    object-fit: cover;
    /* Slide the square window left to keep the three people centered;
       the brand squares on the right get cut, on purpose. */
    object-position: 22% 50%;
  }
}
.team__copy { display: flex; flex-direction: column; gap: 20px; }
.team__right { display: flex; flex-direction: column; gap: 40px; }
.team__title {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.team__title em { font-style: normal; color: var(--acenza-pausa); }
.team__lead { font-size: 19px; line-height: 1.55; opacity: 0.85; }
.team__body { font-size: 15px; line-height: 1.6; opacity: 0.65; }
.team__note {
  padding-top: 16px;
  border-top: 1px solid rgba(235,234,219,0.12);
  max-width: 520px;
}
.team__note-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(235,234,219,0.6);
  margin: 0;
}
/* CTA sizes to its content (text + arrow) instead of stretching in the flex column. */
.team__copy .btn-primary { align-self: flex-start; }
.team__stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(235,234,219,0.15);
}
.team__stats > div b {
  display: block; line-height: 1;
}
.team__stats > div b,
.team__stats > div b > span {
  font-size: 44px; font-weight: 400; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--acenza-pausa), var(--acenza-impulso));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.team__stats > div span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.6; display: block; margin-top: 8px;
}
.team__media { display: none; }
.team__media-pin .dot {
  width: 6px; height: 6px; background: var(--acenza-impulso);
  border-radius: 999px;
}

/* ------ Grid divider (entre módulos, al final de cada uno) ------ */
.grid-divider {
  --unit: 132px;
  position: relative;
  height: var(--unit);
  background: var(--acenza-norte);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.14);
  border-bottom: 1px solid rgba(0,0,0,0.14);
}
.grid-divider__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.14) 1px, transparent 1px);
  background-size: var(--unit) var(--unit);
  background-position: 0 0;
}
.grid-divider__cell {
  position: absolute;
  top: 0;
  height: var(--unit);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.grid-divider__merge {
  position: absolute;
  top: 0;
  width: 1px;
  height: var(--unit);
  background: var(--acenza-norte);
  pointer-events: none;
}
.grid-divider--dark {
  background: var(--acenza-pleno);
  border-top-color: rgba(255,255,255,0.18);
  border-bottom-color: rgba(255,255,255,0.18);
}
.grid-divider--dark .grid-divider__grid {
  background-image: linear-gradient(to right, rgba(255,255,255,0.18) 1px, transparent 1px);
}
.grid-divider--dark .grid-divider__merge {
  background: var(--acenza-pleno);
}
.grid-divider__diag {
  position: absolute;
  top: 0;
  height: var(--unit);
  pointer-events: none;
  overflow: hidden;
}
.grid-divider__diag svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .grid-divider { --unit: 88px; }
}

/* ------ Contact / Footer big ------ */
.contact {
  background: var(--acenza-norte);
  color: var(--acenza-pleno);
  padding: 120px 36px 0;
  position: relative; overflow: hidden;
}
.contact__bg { display: none; }
.contact__inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.contact__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.contact__eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.5; }
.contact__big {
  font-size: var(--fs-display);
  line-height: var(--lh-title); letter-spacing: var(--tracking-tight);
  font-weight: 400; margin: 0;
}
.contact__big em {
  font-style: normal;
  color: var(--acenza-impulso);
}
.contact__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 110px;
}
.contact__hero-copy {
  display: flex; flex-direction: column;
}
.contact__hero-copy .contact__eyebrow { margin-bottom: 32px; }
.contact__hero-copy .contact__big { margin: 0 0 44px; }
.contact__lead {
  font-size: 18px;
  line-height: 1.5;
  max-width: 480px;
  opacity: 0.68;
  margin: 0 0 40px;
  font-weight: 400;
}
.contact__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.contact__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.contact__photo-pin {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--acenza-norte); color: var(--acenza-pleno);
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; gap: 8px; align-items: center;
}
.contact__photo-pin .dot {
  width: 6px; height: 6px; background: var(--acenza-impulso);
  border-radius: 999px;
}
@media (max-width: 900px) {
  .contact__hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: stretch;
  }
  .contact__hero-copy { padding-bottom: 0; }
  .contact__photo { aspect-ratio: 5 / 4; }
  .contact__big { font-size: clamp(40px, 9vw, 64px); }
}
.contact__row {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
}
.contact__hero-copy .contact__row { margin-bottom: 0; }
.contact__mail {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--acenza-pleno);
  border-bottom: 1px solid rgba(16,16,16,0.35);
  padding-bottom: 6px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.contact__mail:hover { color: var(--acenza-impulso); border-bottom-color: var(--acenza-impulso); }
.contact__mail .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  border: 1px solid rgba(16,16,16,0.4);
  font-size: 13px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
}
.contact__mail:hover .arrow { transform: rotate(-45deg); background: var(--acenza-impulso); border-color: var(--acenza-impulso); color: var(--acenza-norte); }
.contact__or {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.5;
}

.contact__cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(16,16,16,0.15);
}
@media (max-width: 800px) { .contact__cols { grid-template-columns: 1fr 1fr; } }
.contact__cols h3 {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; opacity: 0.7;
  margin: 0 0 18px;
}
.contact__cols a, .contact__cols p {
  display: block; padding: 6px 0;
  font-size: 14px; color: var(--acenza-pleno);
  opacity: 0.85; cursor: pointer;
  transition: color 0.18s;
}
.contact__cols a:hover { color: var(--acenza-impulso); opacity: 1; }
.contact__brand .logo { height: 28px; margin-bottom: 18px; }
.contact__brand p { font-size: 14px; line-height: 1.55; opacity: 0.7; max-width: 280px; }

.contact__bigmark {
  margin: 24px 0 0;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(16,16,16,0.15);
  overflow: hidden;
  user-select: none;
}
.contact__bigmark span {
  display: block;
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  font-weight: var(--fw-regular);
  color: var(--acenza-pleno);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .contact__bigmark { padding: 32px 0 20px; }
}

.contact__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(16,16,16,0.15);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7;
}

/* ------ Modal ------ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16,16,16,0.78);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade 0.22s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__dialog {
  background: var(--acenza-norte);
  color: var(--acenza-pleno);
  width: 100%; max-width: 580px;
  padding: 48px;
  position: relative;
  animation: rise 0.32s var(--ease-emph);
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--acenza-pleno);
  border-radius: 999px;
  transition: background 0.18s;
}
.modal__close:hover { background: rgba(16,16,16,0.08); }
.modal__title {
  font-size: 36px; font-weight: 400; letter-spacing: -0.02em;
  line-height: 1; margin: 8px 0 28px;
}
.modal__title em { color: var(--acenza-impulso); font-style: normal; }
.modal__form { display: flex; flex-direction: column; gap: 14px; }
.modal__form label { display: flex; flex-direction: column; gap: 6px; }
.modal__form label span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6;
}
.modal__form input, .modal__form textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(16,16,16,0.2);
  border-radius: 2px;
  color: var(--acenza-pleno);
}
.modal__form input:focus, .modal__form textarea:focus {
  outline: 0; border-color: var(--acenza-impulso);
}
.modal__form button {
  margin-top: 8px; align-self: flex-start;
  padding: 14px 24px; border-radius: 999px;
  background: var(--acenza-pleno); color: var(--acenza-norte);
  border: 0; cursor: pointer;
  font-size: 14px; font-weight: 500;
  display: inline-flex; gap: 10px; align-items: center;
  transition: background 0.18s;
}
.modal__form button:hover { background: var(--acenza-impulso); }
.modal__sent { padding: 20px 0; text-align: center; }
.modal__sent h2 { font-size: 32px; margin: 16px 0 8px; font-weight: 400; }
.modal__sent p { opacity: 0.6; }


/* ----------- Press module (editorial list) ----------- */
.press {
  background: var(--acenza-norte);
  padding: 140px 36px;
  border-top: 1px solid var(--border);
}
.press__inner { max-width: 1400px; margin: 0 auto; }

.press__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 72px;
  max-width: 900px;
}
.press__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.press__title em { font-style: normal; color: var(--acenza-impulso); }

.press__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--acenza-pleno);
}
.press__row-wrap {
  border-bottom: 1px solid var(--acenza-pleno);
}
.press__row {
  display: grid;
  grid-template-columns: 56px 200px 1fr 110px 32px;
  align-items: baseline;
  gap: 40px;
  padding: 32px 8px;
  text-decoration: none;
  color: var(--acenza-pleno);
  position: relative;
  isolation: isolate;
  transition: padding 0.4s var(--ease-emph), color 0.3s ease;
}
.press__row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--acenza-pleno);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-emph);
  z-index: -1;
}
.press__row:hover::before { transform: scaleY(1); }
.press__row:hover {
  color: var(--acenza-norte);
  padding-left: 24px;
  padding-right: 24px;
}

.press__row-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.press__row-outlet {
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
}
.press__row-headline {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.press__row-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: right;
  white-space: nowrap;
}
.press__row-arrow {
  font-size: 18px;
  text-align: right;
  opacity: 0.4;
  transform: translateX(0);
  transition: transform 0.3s var(--ease-emph), opacity 0.3s ease;
}
.press__row:hover .press__row-arrow {
  opacity: 1;
  transform: translateX(6px);
}
.press__row:hover .press__row-idx,
.press__row:hover .press__row-date {
  opacity: 0.8;
}

.press__foot {
  margin-top: 64px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .press__row {
    grid-template-columns: 48px 160px 1fr 100px 24px;
    gap: 28px;
  }
}

@media (max-width: 780px) {
  .press { padding: 88px 20px; }
  .press__head { margin-bottom: 48px; gap: 16px; }
  .press__row {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "idx outlet date"
      ".   headline headline"
      ".   arrow arrow";
    gap: 8px 20px;
    padding: 24px 4px;
  }
  .press__row:hover { padding-left: 12px; padding-right: 12px; }
  .press__row-idx { grid-area: idx; }
  .press__row-outlet { grid-area: outlet; font-size: 13px; }
  .press__row-date { grid-area: date; }
  .press__row-headline { grid-area: headline; font-size: 18px; margin-top: 4px; }
  .press__row-arrow { grid-area: arrow; text-align: left; margin-top: 4px; }
  .press__foot { margin-top: 40px; }
}
