/* ============================================================
   Speaker's Corner — site extensions
   Animations, new sections (ticker, process, articles, FAQ),
   parallax + reveal helpers. Rides on kit.css.
   ============================================================ */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ----- Reveal on scroll primitive ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="scale"].in { transform: scale(1); }

/* ============================================================
   TICKER — the yellow marquee under the hero
   ============================================================ */
.sc-ticker {
  background: #FFD60A;
  color: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}
.sc-ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: sc-ticker 48s linear infinite;
  will-change: transform;
}
.sc-ticker:hover .sc-ticker-track { animation-play-state: paused; }
.sc-ticker-item {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(22px, 2.6vw, 34px);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.sc-ticker-item::after {
  content: "◉";
  font-size: .55em;
  color: #000;
}
@keyframes sc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO — typing line: ghost text técnica para layout estable
   ---------------------------------------------------------------
   El ghost contiene la estructura COMPLETA de la palabra más larga
   (CONVERSATION + cursor + ".") con visibility:hidden — eso le
   reserva al span padre exactamente el ancho y alto de esa
   composición. La capa real va position:absolute en top-left con
   ancho natural, así fluye normalmente con la palabra que se está
   tipeando sin hacer flexbox y sin riesgo de que el cursor se
   reposicione abajo. La altura del H1 nunca cambia → nada de lo
   que está debajo (lead, CTAs, stats, barra amarilla) se mueve.
   ============================================================ */
.sc-hero-typing-line {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
}
.sc-typing-ghost {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  display: inline;
  white-space: nowrap;
}
.sc-cursor-ghost { animation: none !important; }
.sc-typing-real {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  line-height: inherit;
}
.sc-hero-period { color: #fff; }

/* Lock the megaphone to its "CONVERSATION" size so it never scales with the word */
.sc-hero-art { max-width: 440px; margin-left: auto; }
.sc-hero-art img { width: 100%; height: auto; }

/* ============================================================
   HERO enhancements — floating bolts, typing cursor
   ============================================================ */
.sc-hero-sec { isolation: isolate; }
.sc-hero-sec::after {
  /* subtle grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 0%, transparent 75%);
  z-index: 0;
}
.sc-hero-grid { position: relative; z-index: 2; }

.sc-hero-art {
  animation: sc-hero-float 6s ease-in-out infinite;
}
@keyframes sc-hero-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.sc-bolt {
  position: absolute;
  color: #FFD60A;
  font-weight: 900;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255, 214, 10, .4));
}
.sc-bolt.b1 { top: 12%; left: 55%; font-size: 46px; animation: sc-bolt-a 4.2s ease-in-out infinite; }
.sc-bolt.b2 { top: 58%; left: 62%; font-size: 28px; animation: sc-bolt-a 3.6s ease-in-out infinite .4s; }
.sc-bolt.b3 { top: 28%; left: 90%; font-size: 34px; animation: sc-bolt-a 5s   ease-in-out infinite .8s; }
@keyframes sc-bolt-a {
  0%, 100% { transform: translateY(0)   rotate(-6deg); opacity: .85; }
  50%      { transform: translateY(-10px) rotate(6deg);  opacity: 1; }
}

.sc-cursor {
  display: inline-block;
  width: .5ch; height: .85em;
  background: #FFD60A;
  margin-left: 4px;
  vertical-align: -.05em;
  animation: sc-blink 1s steps(2) infinite;
}
@keyframes sc-blink { 50% { opacity: 0; } }

.sc-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid #1A1A1A;
  max-width: 560px;
}
.sc-hero-stat-n {
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.02em;
  color: #FFD60A;
}
.sc-hero-stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8A8A8A;
  margin-top: 8px;
}

/* ============================================================
   SERVICE CARDS — intro animation override
   ============================================================ */
.sc-service { transform-origin: top left; }
.sc-service .sc-service-icon {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.sc-service:hover .sc-service-icon {
  transform: scale(1.06) rotate(-2deg);
}
.sc-service:hover .sc-service-more {
  color: #000; background: #FFD60A; padding: 2px 6px;
}
.sc-service-more { transition: all .15s; display: inline-block; }

/* ============================================================
   PROCESS — numbered steps on dark
   ============================================================ */
.sc-process {
  background: #000;
  color: #fff;
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.sc-process-head {
  max-width: 1280px;
  margin: 0 auto 72px;
}
.sc-process-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.sc-process-grid::before {
  /* connecting line */
  content: "";
  position: absolute;
  top: 38px; left: 40px; right: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #FFD60A 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.sc-step {
  position: relative;
  z-index: 1;
  padding: 24px 0;
}
.sc-step-n {
  width: 76px; height: 76px;
  background: #FFD60A;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 32px;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 0 #fff;
  margin-bottom: 28px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.sc-step:hover .sc-step-n { transform: rotate(-8deg) scale(1.05); }
.sc-step-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .02em;
  margin: 0 0 10px;
}
.sc-step-desc {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  color: #BDBDBD;
  margin: 0;
}

/* ============================================================
   ARTICLES — editorial cards
   ============================================================ */
.sc-articles-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.sc-art {
  background: #fff;
  border: 1.5px solid #000;
  padding: 0;
  box-shadow: 8px 8px 0 0 #000;
  transition: all .2s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sc-art:hover {
  box-shadow: 8px 8px 0 0 #FFD60A;
  transform: translate(-2px, -2px);
}
.sc-art-cat {
  padding: 12px 20px;
  border-bottom: 1.5px solid #000;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
  background: #FFD60A;
  color: #000;
}
.sc-art-body { padding: 24px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.sc-art-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}
.sc-art.feature .sc-art-title { font-size: 32px; }
.sc-art-lead {
  font-size: 14px;
  line-height: 1.55;
  color: #4A4A4A;
  font-weight: 300;
  margin: 0 0 auto;
}
.sc-art-meta {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #E5E5E5;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4A4A4A;
}
.sc-art-meta .sc-art-read { color: #000; border-bottom: 2px solid #FFD60A; }
.sc-art-thumb {
  aspect-ratio: 16 / 9;
  background: #0A0A0A;
  display: grid;
  place-items: center;
  color: #FFD60A;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: 42px;
  overflow: hidden;
  border-bottom: 1.5px solid #000;
  position: relative;
}
.sc-art-thumb.alt { background: #FFD60A; color: #000; }
.sc-art-thumb.photo {
  background-size: cover;
  background-position: center;
  filter: grayscale(.6);
}
.sc-art-thumb .sc-art-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 900;
}

/* ============================================================
   COUNTRIES — flip / reveal on hover
   ============================================================ */
.sc-country {
  position: relative;
  overflow: hidden;
  transition: none;
}
.sc-country::before {
  content: "";
  position: absolute; inset: 0;
  background: #000;
  transform: translateY(100%);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.sc-country:hover { background: #fff; color: #FFD60A; }
.sc-country:hover::before { transform: translateY(0); }
.sc-country > span { position: relative; z-index: 1; }

/* ============================================================
   QUOTE — rotating citations
   ============================================================ */
.sc-quote { min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.sc-quote-stack { position: relative; min-height: 180px; }
.sc-quote-slot {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.sc-quote-slot.active { opacity: 1; transform: translateY(0); }
.sc-quote-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 32px;
}
.sc-quote-dots button {
  width: 10px; height: 10px; border: 2px solid #000; background: transparent;
  cursor: pointer; padding: 0;
  transition: background .15s;
}
.sc-quote-dots button.active { background: #000; }

/* ============================================================
   DIRECTORS — overlap image hover
   ============================================================ */
.sc-dir {
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.sc-dir:hover { transform: translateY(-4px); }
.sc-dir-photo {
  transition: filter .3s;
}
.sc-dir:hover .sc-dir-photo { filter: grayscale(0); }

/* ============================================================
   DIRECTORS — layout 3-col: info izq | foto completa | info der
   ============================================================ */
.sc-dirs-3col {
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.sc-dir-info {
  background: #1A1A1A;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-dir-info-left { border-right: 4px solid #FFD60A; }
.sc-dir-info-right { border-left: 4px solid #FFD60A; text-align: right; }
.sc-dir-info h3 {
  font-weight: 900; text-transform: uppercase; font-size: 22px;
  letter-spacing: 0; margin: 0 0 6px; color: #fff;
}
.sc-dir-info .sc-dir-role {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .28em; color: #FFD60A; margin-bottom: 14px;
}
.sc-dir-info p {
  font-size: 14px; line-height: 1.55; color: #BDBDBD;
  font-weight: 300; margin: 0;
}
.sc-dir-info p + p { margin-top: 12px; }
.sc-dir-photo-full {
  overflow: hidden;
  filter: grayscale(.55);
  transition: filter .35s;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-dir-photo-full:hover { filter: grayscale(0); }
.sc-dir-photo-full img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.sc-faq-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1.5px solid #000;
}
.sc-faq-item {
  border-bottom: 1.5px solid #000;
  padding: 0;
}
.sc-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: padding .2s, background .2s;
}
.sc-faq-q:hover { background: #F4F4F4; padding-left: 16px; }
.sc-faq-q-text {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -.005em;
}
.sc-faq-plus {
  font-weight: 900;
  font-size: 28px;
  min-width: 36px;
  text-align: center;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  color: #000;
}
.sc-faq-item.open .sc-faq-plus { transform: rotate(45deg); color: #FFD60A; background: #000; border-radius: 2px; }
.sc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.2,1);
}
.sc-faq-item.open .sc-faq-a { max-height: 400px; }
.sc-faq-a-inner {
  padding: 0 8px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
  font-weight: 300;
  max-width: 720px;
}

/* ============================================================
   CONTACT STRIP — add mascot echo
   ============================================================ */
.sc-contact { position: relative; overflow: hidden; }
.sc-contact::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: #000;
  transform: rotate(18deg);
  opacity: .04;
}
.sc-contact-inner { position: relative; z-index: 1; }

/* ============================================================
   SECTION HEAD — accent bar
   ============================================================ */
.sc-section-head {
  position: relative;
}
.sc-section-head .sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sc-section-head .sc-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #FFD60A;
}

/* ============================================================
   CURSOR FOLLOWER
   ============================================================ */
.sc-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: #FFD60A;
  border: 2px solid #000;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .sc-cursor-dot { display: block; }
}

/* ============================================================
   TWEAKS panel
   ============================================================ */
.sc-tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  background: #fff;
  border: 1.5px solid #000;
  box-shadow: 8px 8px 0 0 #000;
  padding: 20px 22px;
  width: 280px;
  z-index: 9998;
  font-family: inherit;
}
.sc-tweaks h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #000;
}
.sc-tweak-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.sc-tweak-row label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sc-tweak-row input[type=range] { width: 110px; accent-color: #FFD60A; }
.sc-tweak-swatches { display: flex; gap: 6px; }
.sc-tweak-swatch {
  width: 24px; height: 24px;
  border: 1.5px solid #000;
  cursor: pointer;
  padding: 0;
}
.sc-tweak-swatch.active { box-shadow: 0 0 0 2px #000, 0 0 0 3px #FFD60A; }
.sc-tweak-toggle {
  display: inline-flex;
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
}
.sc-tweak-toggle.on { background: #FFD60A; color: #000; }

/* ============================================================
   NAV scroll-shrink (desktop) — toggle por clase desde JS
   ============================================================ */
.sc-nav { transition: padding .25s; }
.sc-nav.scrolled { padding: 12px 56px; }

/* ============================================================
   GRID HELPERS — service & articles columns por breakpoint
   ============================================================ */
.sc-service-grid-4 { grid-template-columns: repeat(4, 1fr); }
.sc-articles-grid-2 { grid-template-columns: 1fr 1fr; }

/* ============================================================
   NAV TOGGLE (hamburguesa) — solo visible en mobile
   ============================================================ */
.sc-nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid #fff;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
  margin-left: 8px;
}
.sc-nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s, top .2s;
}
.sc-nav-toggle span:nth-child(1) { top: 12px; }
.sc-nav-toggle span:nth-child(2) { top: 19px; }
.sc-nav-toggle span:nth-child(3) { top: 26px; }
.sc-nav-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.sc-nav-toggle.open span:nth-child(2) { opacity: 0; }
.sc-nav-toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1180px) {
  .sc-service-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .sc-service-grid, .sc-service-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sc-articles-grid { grid-template-columns: 1fr 1fr; }
  .sc-articles-grid .sc-art.feature { grid-column: 1 / -1; }
  .sc-countries { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — mobile (override del bloque legacy de arriba)
   ============================================================ */
@media (max-width: 760px) {
  /* Nav: padding controlado por clase scrolled (ver app.js) */
  .sc-nav { padding: 12px 16px !important; gap: 8px; }
  .sc-nav.scrolled { padding: 10px 16px !important; }
  .sc-nav-cta { padding: 9px 14px; font-size: 10px; letter-spacing: .14em; margin-left: auto; }
  .sc-nav-logo { width: 32px; height: 32px; }
  .sc-wordmark-sm { font-size: 11px; }
  .sc-wordmark-sm small { font-size: 8px; }

  /* Mostrar hamburguesa */
  .sc-nav-toggle { display: block; }

  /* Menú colapsable: oculto por defecto, visible cuando .open */
  .sc-nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #000;
    padding: 8px 16px 24px;
    gap: 0;
    border-bottom: 1px solid #1A1A1A;
    margin-left: 0;
  }
  .sc-nav-links.open { display: flex; }
  .sc-nav-links .sc-nav-link {
    padding: 14px 0;
    border-bottom: 1px solid #1A1A1A;
    font-size: 13px;
  }
  .sc-nav-links .sc-nav-link:last-child { border-bottom: none; }

  /* Hero: reducir padding vertical y tipografía */
  .sc-hero-sec { padding: 56px 16px 80px; }
  .sc-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .sc-hero-title { font-size: clamp(40px, 11vw, 64px); margin-bottom: 20px; }
  .sc-hero-lead { font-size: 16px; margin-bottom: 28px; }
  .sc-hero-cta-row { flex-direction: column; align-items: stretch; }
  .sc-hero-cta-row .sc-btn { text-align: center; }
  .sc-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
  }
  .sc-hero-stat-n { font-size: 28px; }
  .sc-hero-stat-l { font-size: 9.5px; letter-spacing: .18em; }
  .sc-hero-art { max-width: 160px; margin: 0 auto; }
  .sc-bolt.b1 { font-size: 32px; }
  .sc-bolt.b2 { font-size: 22px; }
  .sc-bolt.b3 { font-size: 26px; left: 80%; }

  /* Secciones */
  .sc-section { padding: 64px 16px; }
  .sc-section-head { margin-bottom: 36px; }
  .sc-section-title { font-size: clamp(32px, 8vw, 44px); }
  .sc-section-lead { font-size: 16px; }

  /* Services: 1 columna */
  .sc-service-grid, .sc-service-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .sc-service { box-shadow: 6px 6px 0 0 #000; }
  .sc-service:hover { box-shadow: 6px 6px 0 0 #FFD60A; }

  /* Process */
  .sc-process { padding: 72px 16px; }
  .sc-process-head { margin-bottom: 48px; }
  .sc-process-grid { grid-template-columns: 1fr; gap: 32px; }
  .sc-process-grid::before { display: none; }
  .sc-step-n { width: 60px; height: 60px; font-size: 24px; box-shadow: 4px 4px 0 0 #fff; margin-bottom: 18px; }

  /* Quote */
  .sc-quote { padding: 56px 16px; min-height: 320px; }
  .sc-quote-mark { font-size: 80px; }
  .sc-quote-text { font-size: clamp(22px, 5.5vw, 30px); }
  .sc-quote-stack { min-height: 200px; }

  /* Directors */
  .sc-dirs { grid-template-columns: 1fr; gap: 20px; }
  .sc-dir { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .sc-dir-photo { width: 100%; height: 240px; }
  .sc-dir h3 { font-size: 20px; }
  /* 3-col layout: foto arriba, luego info en columna */
  .sc-dirs-3col { grid-template-columns: 1fr; gap: 16px; }
  .sc-dirs-3col .sc-dir-photo-full { order: -1; max-height: 320px; }
  .sc-dir-info { padding: 22px; }
  .sc-dir-info-left { border-right: none; border-left: 4px solid #FFD60A; }
  .sc-dir-info-right { text-align: left; border-left: 4px solid #FFD60A; }
  .sc-dir-info h3 { font-size: 20px; }

  /* Countries */
  .sc-countries { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sc-country { padding: 18px 8px; font-size: 12px; }

  /* Articles: 1 columna y reset overrides inline */
  .sc-articles-grid, .sc-articles-grid-2 { grid-template-columns: 1fr !important; gap: 16px; }
  .sc-art { box-shadow: 6px 6px 0 0 #000; }
  .sc-art:hover { box-shadow: 6px 6px 0 0 #FFD60A; }
  .sc-art-title { font-size: 18px; }
  .sc-art.feature .sc-art-title { font-size: 24px; }

  /* FAQ */
  .sc-faq-q { padding: 22px 4px; gap: 16px; }
  .sc-faq-q-text { font-size: 16px; }
  .sc-faq-plus { font-size: 24px; min-width: 28px; }
  .sc-faq-a-inner { font-size: 14.5px; padding: 0 4px 22px; }

  /* Contact */
  .sc-contact { padding: 48px 16px; }
  .sc-contact-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .sc-contact-title { font-size: clamp(28px, 7vw, 40px); }
  .sc-contact .sc-btn-dark { width: 100%; text-align: center; }

  /* Ticker: tipografía menor */
  .sc-ticker-item { font-size: clamp(18px, 5vw, 24px); gap: 32px; }
  .sc-ticker-track { gap: 32px; animation-duration: 32s; }

  /* Footer */
  .sc-footer { grid-template-columns: 1fr; gap: 32px; padding: 48px 16px 24px; }
  .sc-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Cursor follower fuera en mobile */
  .sc-cursor-dot { display: none !important; }
}

@media (max-width: 380px) {
  .sc-footer-cols { grid-template-columns: 1fr; }
  .sc-hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sc-hero-stat-n { font-size: 24px; }
}

/* ============================================================
   FOOTER — barra "powered by" al pie
   ============================================================ */
.sc-footer { position: relative; padding-bottom: 72px; }
.sc-powered {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 56px;
  border-top: 1px solid #1A1A1A;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #4A4A4A;
}
.sc-powered a {
  color: #BDBDBD;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.sc-powered a:hover { color: #FFD60A; border-bottom-color: #FFD60A; }
@media (max-width: 760px) {
  .sc-powered { padding: 16px 16px; font-size: 10px; letter-spacing: .18em; }
}

/* ============================================================
   ARTICLE PAGES — layout editorial para posts individuales
   ============================================================ */
.sc-post-hero {
  background: #000;
  color: #fff;
  padding: 96px 56px 72px;
  position: relative;
  overflow: hidden;
}
.sc-post-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 0%, transparent 75%);
  z-index: 0;
}
.sc-post-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sc-post-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: #FFD60A;
  text-decoration: none;
  margin-bottom: 28px;
  padding-bottom: 4px;
  border-bottom: 2px solid #FFD60A;
}
.sc-post-back:hover { color: #fff; border-bottom-color: #fff; }
.sc-post-cat {
  display: inline-block;
  background: #FFD60A;
  color: #000;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 24px;
}
.sc-post-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 28px;
}
.sc-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #BDBDBD;
  padding-top: 24px;
  border-top: 1px solid #1A1A1A;
}
.sc-post-meta strong { color: #FFD60A; font-weight: 700; }
.sc-post-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: #4A4A4A;
}

.sc-post-body {
  background: #fff;
  padding: 72px 56px 96px;
}
.sc-post-body-inner {
  max-width: 720px;
  margin: 0 auto;
}
.sc-post-body-inner p {
  font-size: 18px;
  line-height: 1.7;
  color: #1A1A1A;
  font-weight: 400;
  margin: 0 0 1.4em;
}
.sc-post-body-inner p:first-child::first-letter {
  font-weight: 900;
  font-size: 64px;
  line-height: .9;
  float: left;
  padding: 6px 12px 0 0;
  color: #000;
  background: linear-gradient(transparent 60%, #FFD60A 60%);
}
.sc-post-body-inner strong { font-weight: 900; color: #000; }
.sc-post-body-inner em { font-style: italic; }
.sc-post-body-inner blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 4px solid #FFD60A;
  background: #F4F4F4;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  font-style: italic;
}
.sc-post-body-inner h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: -.005em;
  margin: 56px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}
.sc-post-body-inner h3 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  margin: 36px 0 12px;
}
.sc-post-body-inner ul, .sc-post-body-inner ol {
  margin: 0 0 1.4em; padding-left: 1.4em;
  font-size: 18px; line-height: 1.7; color: #1A1A1A;
}
.sc-post-body-inner li { margin-bottom: .5em; }

.sc-post-author {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1.5px solid #000;
  font-size: 14px;
  line-height: 1.6;
  color: #4A4A4A;
}
.sc-post-author strong {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #000;
  font-size: 14px;
  margin-bottom: 4px;
}

.sc-post-related {
  background: #F4F4F4;
  padding: 72px 56px 96px;
}
.sc-post-related-head {
  max-width: 1280px;
  margin: 0 auto 36px;
}
.sc-post-related-head .sc-eyebrow { margin-bottom: 12px; }
.sc-post-related-head h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  letter-spacing: -.01em;
}

@media (max-width: 760px) {
  .sc-post-hero { padding: 56px 16px 48px; }
  .sc-post-body { padding: 48px 16px 64px; }
  .sc-post-body-inner p { font-size: 16.5px; }
  .sc-post-body-inner p:first-child::first-letter { font-size: 48px; }
  .sc-post-body-inner blockquote { font-size: 17px; padding: 18px 20px; }
  .sc-post-body-inner h2 { font-size: 22px; }
  .sc-post-related { padding: 56px 16px 64px; }
  .sc-post-meta { gap: 14px; }
  .sc-post-meta span:not(:last-child)::after { margin-left: 14px; }
}

/* ============================================================
   EN LOS MEDIOS — grilla de videos de apariciones
   Mismo lenguaje que los article cards pero sobre fondo dark
   y con borde/sombra en amarillo para resaltar.
   ============================================================ */
.sc-medios-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-medios-grid .sc-medio.feature { grid-column: 1 / -1; }
.sc-medios-grid .sc-medio.feature .sc-medio-frame { aspect-ratio: 21 / 9; }

.sc-medio {
  background: #0F0F0F;
  border: 1.5px solid #FFD60A;
  box-shadow: 8px 8px 0 0 #FFD60A;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sc-medio:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 0 #FFD60A;
}

.sc-medio-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.sc-medio-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.sc-medio-frame::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 44px;
  color: #0A0A0A;
  background: rgba(255, 214, 10, 0);
  pointer-events: none;
  transition: background .2s;
}
.sc-medio:hover .sc-medio-frame::after { background: rgba(255, 214, 10, 0.18); }
.sc-medio.is-playing .sc-medio-frame::after { display: none; }

.sc-medio-cap {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1.5px solid #FFD60A;
  background: #0A0A0A;
}
.sc-medio-n {
  font-weight: 900;
  font-size: 22px;
  color: #FFD60A;
  letter-spacing: -.02em;
  min-width: 36px;
}
.sc-medio-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E5E5E5;
}
.sc-medio-dur {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #8A8A8A;
}

.sc-medios-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}
.sc-medios-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFD60A;
  display: inline-block;
}
.sc-medios-dots span:nth-child(2) { opacity: .7; }
.sc-medios-dots span:nth-child(3) { opacity: .4; }

@media (max-width: 1024px) {
  .sc-medios-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .sc-medios-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .sc-medio { box-shadow: 6px 6px 0 0 #FFD60A; }
  .sc-medio:hover { box-shadow: 6px 6px 0 0 #FFD60A; transform: none; }
  .sc-medio-n { font-size: 18px; }
  .sc-medios-grid .sc-medio.feature .sc-medio-frame { aspect-ratio: 16 / 9; }
}
