/* ====================================================
   INFLUENCIA — style.css  (con assets reales integrados)
   Paleta: #0a0a0a negro · #f26522 naranja
   Tipografía: Bebas Neue / DM Sans / DM Mono
   ==================================================== */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-soft:  #161616;
  --orange:      #f26522;
  --orange-dim:  #c14e14;
  --orange-glow: rgba(242,101,34,0.15);
  --white:       #ffffff;
  --muted:       #666666;
  --line:        rgba(255,255,255,0.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.87, 0, 0.13, 1);

  --max-w:  1120px;
  --pad:    clamp(20px, 5vw, 80px);
  --nav-h:  68px;
  --r-card: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.tag-mono { font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.section-eyebrow { margin-bottom: 20px; }
.micro-tag { display: inline-block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; color: var(--muted); }
.br-desktop { display: block; }

/* ── CURSOR ─────────────────────────────────────────── */
.cursor { position: fixed; width: 36px; height: 36px; border: 1.5px solid var(--orange); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s var(--ease-expo), height .3s var(--ease-expo); will-change: transform; }
.cursor-dot { position: fixed; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); will-change: transform; }

/* ── ANIMATION PRIMITIVES ───────────────────────────── */
.reveal-mask { display: block; overflow: hidden; }
.reveal-inner { display: block; transform: translateY(110%); }
.reveal-fade { opacity: 0; transform: translateY(32px); }
.reveal-up   { opacity: 0; transform: translateY(24px); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; border-radius: 2px; cursor: pointer; transition: transform .2s var(--ease-expo), background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: var(--black); border: 1px solid var(--orange); }
.btn--primary:hover { background: var(--orange-dim); border-color: var(--orange-dim); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { border-color: var(--white); }
.btn--whatsapp { background: transparent; color: #25D366; border: 1px solid #25D366; }
.btn--whatsapp:hover { background: #25D366; color: var(--black); }
.btn--large { font-size: 12px; padding: 18px 40px; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── PRELOADER ──────────────────────────────────────── */
.preloader { position: fixed; inset: 0; background: var(--black); z-index: 8000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.preloader__logo { opacity: 0; transform: translateY(20px); animation: fadeUp .6s .2s var(--ease-expo) forwards; }
.preloader__logo-img { height: clamp(40px, 8vw, 72px); width: auto; display: block; }
.preloader__logo span { color: var(--orange); }
.preloader__counter { font-family: var(--font-mono); font-size: 12px; letter-spacing: 4px; color: var(--muted); opacity: 0; animation: fadeUp .5s .4s var(--ease-expo) forwards; }
.preloader__bar { width: clamp(140px,30vw,240px); height: 1px; background: rgba(255,255,255,0.08); overflow: hidden; opacity: 0; animation: fadeUp .5s .4s var(--ease-expo) forwards; }
.preloader__bar-fill { height: 100%; background: var(--orange); width: 0%; transition: width .05s linear; }
.preloader__tagline { font-family: var(--font-display); font-size: clamp(14px,2vw,22px); letter-spacing: 6px; color: var(--orange); opacity: 0; }

/* ── NAV ────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); background: rgba(10,10,10,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(-100%); transition: opacity .6s var(--ease-expo), transform .6s var(--ease-expo); }
.nav.is-visible { opacity: 1; transform: translateY(0); }
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 32px; width: auto; display: block; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--white); }
.nav__cta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 8px 18px; border-radius: 2px; transition: background .2s, color .2s; }
.nav__cta:hover { background: var(--orange); color: var(--black); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-top: var(--nav-h); }

.hero__bg-layer { position: absolute; inset: 0; pointer-events: none; }
.hero__bg-layer--deep { z-index: 1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.5; }
.hero__bg-layer--noise { z-index: 2; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); background-size: 180px; opacity: 0.025; mix-blend-mode: overlay; }
.hero__bg-layer--sweep { z-index: 3; background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.55) 35%, transparent 70%); }

.hero__grid { position: absolute; inset: 0; z-index: 4; display: flex; pointer-events: none; }
.hero__grid-col { flex: 1; border-right: 1px solid rgba(255,255,255,0.022); }
.hero__grid-col:first-child { border-left: 1px solid rgba(255,255,255,0.022); }

.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 4; filter: blur(80px); will-change: transform; }
.hero__orb--1 { width: clamp(300px,50vw,600px); height: clamp(300px,50vw,600px); background: radial-gradient(circle, rgba(242,101,34,0.14) 0%, transparent 70%); top: -10%; right: -10%; }
.hero__orb--2 { width: clamp(200px,30vw,380px); height: clamp(200px,30vw,380px); background: radial-gradient(circle, rgba(242,101,34,0.07) 0%, transparent 70%); bottom: 20%; left: -5%; }

.hero__content { position: relative; z-index: 10; padding: 0 var(--pad); max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero__eyebrow { margin-bottom: 28px; }
.hero__headline { font-family: var(--font-display); font-size: clamp(72px,12vw,160px); line-height: 0.92; letter-spacing: 1px; margin-bottom: 32px; }
.hero__headline-line { display: block; }
.hero__headline-line--accent { color: var(--orange); }
.hero__sub { font-size: clamp(14px,1.6vw,17px); color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 520px; margin-bottom: 40px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }
.hero__scroll-cue { display: flex; align-items: center; gap: 12px; }
.hero__scroll-line { width: 40px; height: 1px; background: var(--orange); transform-origin: left; animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(0.4); opacity: 0.3; } }

.hero__stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); background: rgba(10,10,10,0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero__stat { padding: clamp(14px,2.5vw,24px) clamp(16px,3vw,32px); border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.hero__stat:last-child { border-right: none; }
.hero__stat-row { display: flex; align-items: baseline; }
.hero__stat-num { font-family: var(--font-display); font-size: clamp(36px,4.5vw,56px); color: var(--orange); line-height: 1; }
.hero__stat-unit { font-family: var(--font-display); font-size: clamp(20px,2vw,28px); color: var(--orange); }
.hero__stat-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════════════════════
   PROBLEMA
   ════════════════════════════════════════════════════ */
.problem { background: var(--black); padding: clamp(80px,12vw,160px) 0; }
.problem__headline { font-family: var(--font-display); font-size: clamp(40px,7vw,96px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 36px; }
.problem__headline--dim { color: rgba(255,255,255,0.3); }
.problem__lead { font-size: clamp(15px,1.6vw,18px); color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 640px; margin-bottom: 64px; }

.problem__compare { margin-bottom: 56px; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.problem__compare-row { padding: clamp(24px,4vw,40px); display: flex; flex-direction: column; gap: 20px; }
.problem__compare-row--before { background: rgba(255,255,255,0.02); }
.problem__compare-row--after { background: rgba(242,101,34,0.04); }
.problem__compare-divider { height: 1px; background: var(--line); }
.problem__compare-label { color: var(--muted); }
.problem__compare-label--orange { color: var(--orange); }
.problem__compare-items { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.problem__compare-item { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 8px; padding: 12px 20px; min-width: 80px; }
.problem__compare-num { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); line-height: 1; color: rgba(255,255,255,0.2); }
.problem__compare-num--muted { color: rgba(255,255,255,0.15); }
.problem__compare-num--orange { color: var(--orange); }
.problem__compare-desc { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.problem__compare-arrow { font-family: var(--font-display); font-size: 24px; color: rgba(255,255,255,0.1); }
.problem__compare-arrow--orange { color: rgba(242,101,34,0.35); }

.problem__close { font-family: var(--font-display); font-size: clamp(28px,4vw,52px); letter-spacing: 1px; color: rgba(255,255,255,0.35); line-height: 1.1; }
.problem__close strong { color: var(--white); font-family: inherit; font-weight: 400; }

/* ════════════════════════════════════════════════════
   MANIFIESTO
   ════════════════════════════════════════════════════ */
.manifesto { position: relative; background: var(--black-mid); padding: clamp(100px,15vw,200px) 0; overflow: hidden; }

/* Imagen de fondo atmosférica con overlay fuerte */
.manifesto__visual-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.06; filter: grayscale(100%); pointer-events: none; z-index: 0; }

.manifesto__bg-mark { position: absolute; top: -8%; right: -2%; font-family: var(--font-display); font-size: clamp(300px,45vw,600px); color: rgba(242,101,34,0.04); line-height: 1; pointer-events: none; user-select: none; z-index: 0; }
.manifesto__scan { position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(to right, transparent 0%, rgba(242,101,34,0.02) 50%, transparent 100%); animation: scanSweep 9s ease-in-out infinite; pointer-events: none; z-index: 0; }
@keyframes scanSweep { 0% { left: -60%; } 50% { left: 100%; } 100% { left: -60%; } }

.manifesto__inner { position: relative; z-index: 1; }
.manifesto__tag { margin-bottom: 40px; }
.manifesto__quote { display: block; font-family: var(--font-display); font-size: clamp(36px,6vw,88px); letter-spacing: 1px; line-height: 1.0; font-style: normal; margin-bottom: 48px; }
.manifesto__quote-line { display: block; overflow: hidden; }
.manifesto__quote-line--orange .reveal-inner { color: var(--orange); }
.manifesto__body { font-size: clamp(14px,1.5vw,17px); color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 560px; }

/* ════════════════════════════════════════════════════
   SERVICIOS — cards con imagen real
   ════════════════════════════════════════════════════ */
.services { background: var(--black); padding: clamp(80px,12vw,160px) 0; }
.services__header { margin-bottom: 64px; }
.services__headline { font-family: var(--font-display); font-size: clamp(36px,6vw,80px); line-height: 0.95; letter-spacing: 1px; }
.services__headline--dim { color: rgba(255,255,255,0.18); }

.services__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }

.service-card { position: relative; background: var(--black-soft); border: 1px solid var(--line); overflow: hidden; cursor: pointer; transition: border-color .4s; }
.service-card:hover { border-color: rgba(242,101,34,0.25); }

/* Image inside card */
.service-card__media { position: relative; width: 100%; aspect-ratio: 16/7; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform .8s var(--ease-expo), filter .6s; filter: brightness(0.7) grayscale(0.3); }
.service-card:hover .service-card__media img { transform: scale(1.0); filter: brightness(0.55) grayscale(0); }
.service-card__media-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--black-soft) 100%); }

.service-card__accent { position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--orange); transition: height .5s var(--ease-expo); z-index: 2; }
.service-card:hover .service-card__accent { height: 100%; }

.service-card__content { padding: clamp(24px,3vw,40px); position: relative; z-index: 1; }
.service-card__number { color: rgba(255,255,255,0.1); margin-bottom: 12px; transition: color .3s; }
.service-card:hover .service-card__number { color: var(--orange); }
.service-card__title { font-family: var(--font-display); font-size: clamp(24px,3vw,40px); letter-spacing: 0.5px; margin-bottom: 6px; line-height: 1; }
.service-card__tagline { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }
.service-card__desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; max-width: 380px; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.service-card__cta { color: rgba(255,255,255,0.2); font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; transition: color .3s, transform .3s; display: inline-block; }
.service-card:hover .service-card__cta { color: var(--orange); transform: translateX(6px); }

/* ════════════════════════════════════════════════════
   TRABAJOS — video grid con hover-play
   ════════════════════════════════════════════════════ */
.work { background: var(--black-mid); padding: clamp(80px,12vw,160px) 0 0; }
.work .container { margin-bottom: 56px; }
.work__headline { font-family: var(--font-display); font-size: clamp(40px,7vw,96px); line-height: 0.95; letter-spacing: 1px; }
.work__headline--dim { color: rgba(255,255,255,0.2); }
.work__lead { font-size: clamp(14px,1.5vw,17px); color: rgba(255,255,255,0.4); margin-top: 24px; }

/* 3-column video grid, full-bleed */
.work__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }

.work-card { position: relative; aspect-ratio: 9/14; overflow: hidden; cursor: pointer; background: var(--black-soft); }

.work-card__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform .8s var(--ease-expo); }
.work-card:hover .work-card__video { transform: scale(1.0); }

.work-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: clamp(16px,2vw,28px); transition: background .4s; }
.work-card:hover .work-card__overlay { background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.1) 100%); }

.work-card__play { font-size: 13px; color: rgba(255,255,255,0.0); width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: color .3s, border-color .3s, transform .3s; padding-left: 3px; align-self: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7); }
.work-card:hover .work-card__play { color: var(--white); border-color: rgba(255,255,255,0.5); transform: translate(-50%,-50%) scale(1); }

.work-card__meta { margin-top: auto; }
.work-card__category { color: var(--orange); display: block; margin-bottom: 6px; }
.work-card__title { font-family: var(--font-display); font-size: clamp(20px,2.5vw,32px); letter-spacing: 0.5px; line-height: 1; transform: translateY(6px); opacity: 0.7; transition: transform .4s var(--ease-expo), opacity .4s; }
.work-card:hover .work-card__title { transform: translateY(0); opacity: 1; }

/* Editorial strip full-width */
.work__editorial-strip { position: relative; overflow: hidden; aspect-ratio: 21/7; margin-top: 3px; }
.work__editorial-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(0.55); transition: filter .8s var(--ease-expo), transform .8s var(--ease-expo); transform: scale(1.03); }
.work__editorial-strip:hover img { filter: brightness(0.4); transform: scale(1.0); }
.work__editorial-strip-caption { position: absolute; bottom: clamp(20px,4vw,48px); left: clamp(20px,5vw,80px); }
.work__editorial-strip-caption p { font-family: var(--font-display); font-size: clamp(20px,3vw,44px); letter-spacing: 1px; margin-top: 8px; color: rgba(255,255,255,0.85); }

/* ════════════════════════════════════════════════════
   CÓMO FUNCIONA
   ════════════════════════════════════════════════════ */
.how { background: var(--black); padding: clamp(80px,12vw,160px) 0; }
.how__headline { font-family: var(--font-display); font-size: clamp(40px,7vw,96px); line-height: 0.95; letter-spacing: 1px; }
.how__headline--sub { color: var(--orange); margin-bottom: 80px; }

.how__step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; padding-bottom: 48px; position: relative; }
.how__step-line { position: absolute; left: 36px; top: 56px; width: 1px; height: calc(100% - 24px); background: linear-gradient(to bottom, var(--orange) 0%, rgba(242,101,34,0.06) 100%); transform-origin: top; transform: scaleY(0); }
.how__step-line--last { display: none; }
.how__step-num { font-size: 11px; letter-spacing: 3px; color: var(--orange); padding-top: 6px; text-align: right; }
.how__step-body { border-left: 1px solid var(--line); padding-left: 32px; }
.how__step-title { font-family: var(--font-display); font-size: clamp(22px,2.8vw,36px); letter-spacing: 0.5px; margin-bottom: 10px; line-height: 1; }
.how__step-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 520px; }
.reveal-step { opacity: 0; transform: translateX(-24px); }

/* ════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════ */
.cta-final { position: relative; background: var(--black); overflow: hidden; }
.cta-final__noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; opacity: 0.018; pointer-events: none; }
.cta-final__glow { position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 80%; height: 60%; background: radial-gradient(ellipse, rgba(242,101,34,0.1) 0%, transparent 70%); pointer-events: none; filter: blur(40px); }
.cta-final__inner { position: relative; z-index: 1; padding-top: clamp(100px,14vw,180px); padding-bottom: clamp(80px,10vw,140px); }

.cta-final__headline { font-family: var(--font-display); font-size: clamp(38px,7vw,108px); letter-spacing: 1px; line-height: 0.96; margin: 20px 0 40px; }
.cta-final__headline--orange .reveal-inner { color: var(--orange); }
.cta-final__sub { font-size: clamp(14px,1.5vw,17px); color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 48px; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; margin-top: 60px; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer__brand { display: flex; align-items: center; }
.footer__logo-img { height: 28px; width: auto; display: block; }
.site-footer__brand span { color: var(--orange); }
.site-footer__copy { color: var(--muted); }
.site-footer__micro { display: flex; gap: 8px; flex-wrap: wrap; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(3),
  .hero__stat:nth-child(4) { border-top: 1px solid var(--line); }
  .hero__stat:nth-child(4) { border-right: none; }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .br-desktop { display: inline; }
  .hero { min-height: 100svh; padding-bottom: 160px; justify-content: flex-end; }
  .hero__headline { font-size: clamp(52px,16vw,80px); }
  .problem__compare-items { flex-direction: column; align-items: flex-start; }
  .problem__compare-arrow { transform: rotate(90deg); }
  .work__grid { grid-template-columns: 1fr; }
  .work-card { aspect-ratio: 4/5; }
  .work__editorial-strip { aspect-ratio: 4/3; }
  .how__step { grid-template-columns: 50px 1fr; gap: 16px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-inner { transform: none !important; }
  .reveal-fade, .reveal-up, .reveal-step { opacity: 1 !important; transform: none !important; }
}
