/* =============================================================================
   FEBO Studio — estilos del sitio
   Identidad: negro / grafito, metal cepillado, acentos dorados del logo.
   Todos los colores y medidas están en :root para poder ajustarlos en un lugar.
   ============================================================================= */

:root {
  /* Superficies */
  --bg:          #070709;
  --bg-2:        #0c0d10;
  --surface-1:   #111216;
  --surface-2:   #16171c;
  --surface-3:   #1d1f25;
  --line:        rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.13);

  /* Texto */
  --text:        #ecebe6;
  --text-2:      #b4b3ae;
  --muted:       #85858c;

  /* Metal y oro (del logo) */
  --silver:      #cfd3d9;
  --silver-dim:  #8d9199;
  --gold:        #d9a54a;
  --gold-soft:   #e9c07a;
  --gold-deep:   #9a6a22;
  --gold-glow:   rgba(217, 165, 74, 0.18);

  /* Estados */
  --ok:          #7fbf8a;
  --soon:        #8a8f9c;

  /* Tipografía */
  --font:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display:"Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Medidas */
  --radius-s: 8px;
  --radius:   14px;
  --radius-l: 20px;
  --maxw:     1200px;
  --gutter:   clamp(16px, 4vw, 40px);
  --nav-h:    68px;
  --section-pad: clamp(80px, 11vw, 150px);

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 10px 30px -12px rgba(0,0,0,0.7);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.05) inset, 0 40px 80px -30px rgba(0,0,0,0.9);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------------------------------------------------------------- Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -0.02em; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; }
::selection { background: var(--gold); color: #120d04; }

:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #120d04; padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------------------------------------------------------------- Botones */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 22px;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text); text-decoration: none; font-weight: 550; font-size: 15px; letter-spacing: 0.005em;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), color .25s;
}
.btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold {
  border-color: rgba(233, 192, 122, 0.55);
  background: linear-gradient(180deg, #e6b964 0%, #c8913a 100%);
  color: #1a1206;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 24px -10px rgba(217,165,74,0.55);
}
.btn--gold:hover { background: linear-gradient(180deg, #efc473 0%, #d29b44 100%); border-color: rgba(255, 220, 160, 0.7); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 30px -10px rgba(217,165,74,0.65); }

.btn--ghost { background: transparent; }
.btn--sm { --h: 38px; padding: 0 16px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 30px; font-size: 16px; }
.btn[aria-disabled="true"], .btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-soft); text-decoration: none; font-weight: 550; font-size: 14.5px;
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------------- Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--text-2);
  background: rgba(255,255,255,0.025); white-space: nowrap;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .9; }
.badge--available { color: var(--ok); border-color: rgba(127,191,138,0.3); }
.badge--partial   { color: var(--gold-soft); border-color: rgba(233,192,122,0.3); }
.badge--coming-soon { color: var(--soon); border-style: dashed; }
.badge--plain::before { display: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }

/* ---------------------------------------------------------------- Navegación */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled, .nav.is-open {
  background: rgba(8, 8, 10, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; }
.nav__links a {
  display: block; padding: 8px 12px; border-radius: 8px;
  text-decoration: none; font-size: 14.5px; color: var(--text-2); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__links a[aria-current="true"] { color: var(--text); }
.nav__links a[aria-current="true"]::after {
  content: ""; display: block; height: 1px; margin-top: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav__cta { flex: none; }
.nav__toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; position: relative; transition: transform .3s var(--ease), background .2s;
}
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta--desktop { display: none; }
  .nav__panel {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: #09090b;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 28px;
    display: none; flex-direction: column; gap: 8px;
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav.is-open .nav__panel { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; margin: 0; gap: 0; }
  .nav__links a { padding: 15px 4px; font-size: 18px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a[aria-current="true"]::after { display: none; }
  .nav__panel .btn { margin-top: 14px; --h: 54px; }
}
@media (min-width: 1021px) {
  .nav__panel { display: contents; }
  .nav__cta--mobile { display: none; }
}

/* ---------------------------------------------------------------- Secciones */
.section { padding: var(--section-pad) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section--line { border-top: 1px solid var(--line); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(34px, 5.2vw, 60px); margin-top: 18px; }
.section-head p { margin-top: 20px; font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); }
.metal-text {
  background: linear-gradient(180deg, #f4f5f7 0%, #b9bdc4 55%, #8e929a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gold-text {
  background: linear-gradient(180deg, #f3d59a 0%, #d9a54a 60%, #a8742a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------------------------------------------------------------- Capturas (sistema común) */
.shot {
  position: relative; overflow: hidden;
  aspect-ratio: var(--ratio, 16 / 10);
  border-radius: var(--radius);
  background: var(--surface-1);
  border: 1px solid var(--line);
}
.shot > img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center top); transition: opacity .5s var(--ease), transform .6s var(--ease); }
.shot > img:not(.is-loaded) { opacity: 0; }
.shot--zoomable { cursor: zoom-in; }
.shot--contain { background: radial-gradient(ellipse at 50% 40%, #1a1b20, #0b0b0d 75%); }
.shot--contain > img { object-fit: contain; padding: 4%; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6)); }
.shot--contain.shot--zoomable:hover > img { transform: scale(1.02); }
.shot--zoomable:hover > img { transform: scale(1.015); }
.shot__zoom-hint {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.55); border: 1px solid var(--line-strong);
  opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s var(--ease);
  pointer-events: none;
}
.shot__zoom-hint svg { width: 16px; height: 16px; }
.shot--zoomable:hover .shot__zoom-hint, .shot--zoomable:focus-visible .shot__zoom-hint { opacity: 1; transform: none; }

/* Placeholder: se ve claramente como "captura pendiente", nunca como una interfaz falsa */
.shot__ph {
  position: absolute; inset: 0; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 10px, transparent 10px 20px),
    radial-gradient(ellipse at 50% 40%, rgba(217,165,74,0.06), transparent 60%),
    var(--surface-1);
  color: var(--muted);
}
.shot.is-missing .shot__ph { display: flex; }
.shot.is-missing > img { display: none; }
.shot__ph::before {
  content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,0.12); border-radius: calc(var(--radius) - 6px); pointer-events: none;
}
.shot__ph-icon { width: 34px; height: 34px; color: var(--gold); opacity: .8; }
.shot__ph-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); }
.shot__ph-title { font-family: var(--font-display); font-size: clamp(15px, 1.6vw, 20px); color: var(--text); font-weight: 600; }
.shot__ph-path { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); word-break: break-all; max-width: 90%; }
.shot--compact .shot__ph-path, .shot--compact .shot__ph-icon { display: none; }
.shot--compact .shot__ph-title { font-size: 14px; }

/* Ventana de aplicación (marco tipo macOS neutro) */
.app-window {
  position: relative;
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, #1b1c21, #111215);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2), 0 0 0 1px rgba(0,0,0,0.6);
  padding: 0 0 0;
  overflow: hidden;
}
.app-window__bar {
  height: 34px; display: flex; align-items: center; gap: 8px; padding: 0 14px;
  border-bottom: 1px solid rgba(0,0,0,0.6);
  background: linear-gradient(180deg, #202127, #17181c);
}
.app-window__bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3b41; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.app-window__title { margin-left: 10px; font-size: 12px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.04em; }
.app-window .shot { border-radius: 0; border: 0; }

/* ---------------------------------------------------------------- HERO */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 90px)) 0 clamp(60px, 8vw, 110px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/backgrounds/febo-backdrop.jpg") center 30% / cover no-repeat;
  opacity: .32;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.6) 45%, transparent 85%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.6) 45%, transparent 85%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(7,7,9,0.1), var(--bg) 100%);
  pointer-events: none;
}
.hero__inner { text-align: center; }
.hero__logo { width: min(560px, 82vw); margin: 0 auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6)); }
.hero h1 { position: absolute; }
.hero__tagline {
  margin-top: clamp(22px, 3vw, 34px);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 3.6vw, 42px); letter-spacing: -0.02em;
}
.hero__sub { margin: 16px auto 0; max-width: 620px; color: var(--text-2); font-size: clamp(16px, 1.6vw, 19px); }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__meta .badge { text-transform: none; letter-spacing: 0.04em; }
.hero__meta { margin-top: 22px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.hero__stage { position: relative; margin-top: clamp(56px, 8vw, 96px); }
.hero__glow {
  position: absolute; left: 50%; top: 8%; width: 80%; height: 70%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(217,165,74,0.22), rgba(217,165,74,0.06) 45%, transparent 70%);
  filter: blur(40px); z-index: -1; pointer-events: none;
}
.hero__window { max-width: 1100px; margin: 0 auto; will-change: transform; }
.hero__floor {
  height: 1px; max-width: 900px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(233,192,122,0.55), transparent);
  box-shadow: 0 0 24px 2px rgba(217,165,74,0.25);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------- THE DAW */
.daw-intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.daw-intro .section-head { margin-bottom: 0; }
.capabilities { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.capabilities li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 14px;
  background: var(--surface-1); border: 1px solid var(--line); color: var(--text-2);
}
.capabilities li.is-soon { border-style: dashed; color: var(--muted); }
.capabilities li.is-soon::after { content: "Soon"; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--soon); }

.hotspot-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.hotspot-stage { position: relative; }
.hotspot {
  position: absolute; z-index: 3; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255, 225, 170, 0.8);
  background: rgba(20, 14, 5, 0.85);
  color: var(--gold-soft); font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  display: grid; place-items: center; cursor: pointer; padding: 0;
  box-shadow: 0 0 0 4px rgba(217,165,74,0.14), 0 4px 14px rgba(0,0,0,0.6);
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
}
.hotspot::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(217,165,74,0.45); animation: hs-pulse 2.8s var(--ease) infinite;
}
.hotspot:hover { transform: translate(-50%, -50%) scale(1.1); }
.hotspot[aria-pressed="true"] { background: var(--gold); color: #1a1206; box-shadow: 0 0 0 6px rgba(217,165,74,0.25), 0 4px 18px rgba(0,0,0,0.7); }
@keyframes hs-pulse { 0% { transform: scale(.85); opacity: .9; } 70%, 100% { transform: scale(1.5); opacity: 0; } }

.hotspot-panel {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.hotspot-panel__num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing: .14em; }
.hotspot-panel h3 { font-size: 22px; margin-top: 6px; }
.hotspot-panel p { margin-top: 10px; color: var(--text-2); font-size: 15px; }
.hotspot-list { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 2px; }
.hotspot-list button {
  width: 100%; display: flex; gap: 12px; align-items: center; text-align: left;
  background: none; border: 0; padding: 7px 8px; border-radius: 8px; cursor: pointer; color: var(--text-2); font-size: 14px;
}
.hotspot-list button span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); width: 18px; }
.hotspot-list button:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.hotspot-list button[aria-pressed="true"] { background: rgba(217,165,74,0.1); color: var(--gold-soft); }
.hotspot-list button[aria-pressed="true"] span { color: var(--gold); }
.hotspot-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------------- WORKFLOW */
.workflow { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.workflow__steps { list-style: none; position: relative; }
.workflow__steps::before {
  content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 1px;
  background: linear-gradient(180deg, var(--gold-deep), rgba(255,255,255,0.08));
}
.workflow__step button {
  position: relative; width: 100%; display: flex; align-items: center; gap: 18px;
  background: none; border: 0; padding: 10px 12px 10px 0; cursor: pointer; text-align: left; border-radius: 10px;
}
.workflow__dot {
  flex: none; width: 43px; height: 43px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  transition: all .3s var(--ease);
}
.workflow__label { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; transition: color .3s; }
.workflow__step button:hover .workflow__label { color: var(--text-2); }
.workflow__step button[aria-selected="true"] .workflow__dot { background: var(--gold); color: #1a1206; border-color: var(--gold-soft); box-shadow: 0 0 0 6px var(--gold-glow); }
.workflow__step button[aria-selected="true"] .workflow__label { color: var(--text); }
.workflow__arrow { display: block; padding-left: 16px; color: var(--gold-deep); font-size: 13px; line-height: 1; height: 8px; }
.workflow__panel { display: grid; gap: 24px; }
.workflow__panel[hidden] { display: none; }
.workflow__panel h3 { font-size: clamp(26px, 3vw, 36px); }
.workflow__panel p { color: var(--text-2); font-size: 17px; max-width: 640px; margin-top: 10px; }
.workflow__panel-step { font-family: var(--font-mono); color: var(--gold); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }

/* ---------------------------------------------------------------- FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; }
.feature {
  position: relative;
  background: linear-gradient(180deg, var(--surface-1), rgba(17,18,22,0.6));
  border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.feature::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,192,122,0.4), transparent); opacity: 0; transition: opacity .3s;
}
.feature:hover::before { opacity: 1; }
.feature--soon { background: transparent; border-style: dashed; }
.feature__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(180deg, #25262c, #16171b); border: 1px solid var(--line-strong);
  color: var(--gold-soft); box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 22px; }
.feature__summary { color: var(--text-2); font-size: 15px; }
.feature__points { list-style: none; display: grid; gap: 8px; font-size: 14.5px; color: var(--text-2); }
.feature__points li { position: relative; padding-left: 18px; }
.feature__points li::before { content: ""; position: absolute; left: 2px; top: .68em; width: 6px; height: 6px; border-radius: 2px; background: var(--silver-dim); transform: rotate(45deg); }
.feature__points li.is-soon { color: var(--muted); }
.feature__points li.is-soon::before { background: transparent; border: 1px solid var(--soon); }
.feature__points li.is-soon::after { content: " · Coming soon"; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soon); }
.feature__foot { margin-top: auto; padding-top: 6px; }
.feature__shot-btn { background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------------------------------------------------------------- INSIDE (tabs) */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-1);
  cursor: pointer; font-size: 14.5px; color: var(--text-2); transition: all .25s var(--ease);
}
.tab:hover { color: var(--text); border-color: var(--line-strong); }
.tab[aria-selected="true"], .tab[aria-pressed="true"] { background: var(--text); color: #0b0b0d; border-color: var(--text); }
.tab .tab__soon { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.inside-panel { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.inside-panel[hidden] { display: none; }
.inside-panel h3 { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 14px; }
.inside-panel p { color: var(--text-2); font-size: 16.5px; }
.checklist { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: var(--text-2); }
.checklist li::before { content: ""; flex: none; width: 14px; height: 1px; background: var(--gold); transform: translateY(-4px); }
.checklist li.is-soon { color: var(--muted); }
.checklist li.is-soon::after { content: "Coming soon"; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--soon); margin-left: 6px; }

.soon-panel {
  aspect-ratio: 16 / 10; border-radius: var(--radius); border: 1px dashed var(--line-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.03), transparent 65%);
}
.soon-panel strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.soon-panel span { color: var(--muted); font-size: 14px; max-width: 360px; }

/* ---------------------------------------------------------------- MUSICIANS */
.musicians { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.musician {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s var(--ease);
}
.musician:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.musician .shot { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); --ratio: 4 / 3; }
.musician__body { padding: 18px 18px 22px; }
.musician h3 { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.musician p { margin-top: 8px; font-size: 14.5px; color: var(--text-2); }

/* ---------------------------------------------------------------- PLUGINS */
.plugin-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 30px; }
.plugin-filters .tab { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 14px; }
.plugin-filters .tab .count { opacity: .55; }
.plugin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.plugin-card {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius-l);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plugin-card:hover { border-color: rgba(233,192,122,0.28); transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9); }
.plugin-card .shot { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); --ratio: 16 / 10; --pos: center; }
.plugin-card__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plugin-card__cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.plugin-card__cat span { color: var(--muted); }
.plugin-card h3 { font-size: 22px; }
.plugin-card__desc { color: var(--text-2); font-size: 14.5px; }
.plugin-card__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; }
.chips li { font-size: 12px; padding: 3px 9px; border-radius: 6px; background: var(--surface-3); color: var(--text-2); border: 1px solid var(--line); }
.plugin-card__uses { font-size: 13.5px; color: var(--muted); }
.plugin-card__foot { margin-top: auto; padding-top: 8px; display: flex; justify-content: space-between; align-items: center; }
.plugin-card__family { font-size: 12px; color: var(--muted); }
.plugin-family-title { display: flex; align-items: baseline; gap: 14px; margin: 44px 0 18px; }
.plugin-family-title h3 { font-size: 20px; }
.plugin-family-title p { color: var(--muted); font-size: 14px; }
.plugin-empty { color: var(--muted); padding: 30px 0; }

/* ---------------------------------------------------------------- F-PRO EQ */
.fpro { display: grid; gap: clamp(36px, 5vw, 64px); }
.fpro__top { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.fpro__top h3 { font-size: clamp(30px, 3.6vw, 44px); margin: 12px 0 14px; }
.fpro__top p { color: var(--text-2); font-size: 16.5px; }
.fpro__top .btn { margin-top: 24px; }
.spec-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 26px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.spec-row div { background: var(--bg-2); padding: 14px 16px; }
.spec-row dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.spec-row dd { margin: 4px 0 0; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--silver); }

.schematic-wrap { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.schematic {
  background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(14px, 2vw, 22px);
}
.schematic svg { width: 100%; height: auto; display: block; }
.schematic__caption { margin-top: 12px; font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); letter-spacing: .02em; }
.sch-zone { cursor: pointer; }
.sch-zone rect.zone { fill: rgba(255,255,255,0.025); stroke: rgba(255,255,255,0.14); stroke-width: 1; transition: fill .25s, stroke .25s; }
.sch-zone:hover rect.zone, .sch-zone.is-active rect.zone { fill: rgba(217,165,74,0.1); stroke: var(--gold); }
.sch-zone text { font-family: var(--font-mono); fill: var(--text-2); font-size: 11px; letter-spacing: .08em; }
.sch-zone .zone-num { fill: var(--gold); font-weight: 700; }
.sch-zone:focus { outline: none; }
.sch-zone:focus-visible rect.zone { stroke: var(--gold-soft); stroke-width: 2; }
.sch-legend { list-style: none; display: grid; gap: 8px; }
.sch-legend li button {
  width: 100%; text-align: left; background: var(--surface-1); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer;
  display: grid; grid-template-columns: 28px 1fr; gap: 4px 12px; transition: border-color .25s, background .25s;
}
.sch-legend li button:hover { border-color: var(--line-strong); }
.sch-legend li button[aria-pressed="true"] { border-color: rgba(217,165,74,0.55); background: rgba(217,165,74,0.06); }
.sch-legend .n { grid-row: span 2; font-family: var(--font-mono); color: var(--gold); font-size: 13px; padding-top: 2px; }
.sch-legend strong { font-size: 15.5px; font-weight: 600; }
.sch-legend span.t { font-size: 14px; color: var(--text-2); }

.filter-types { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 10px; }
.filter-type { background: var(--surface-1); border: 1px solid var(--line); border-radius: 12px; padding: 14px 14px 12px; }
.filter-type svg { width: 100%; height: 56px; display: block; }
.filter-type svg .grid { stroke: rgba(255,255,255,0.06); stroke-width: 1; vector-effect: non-scaling-stroke; }
.filter-type svg path { vector-effect: non-scaling-stroke; }
.filter-type svg .curve { fill: none; stroke: var(--gold-soft); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.filter-type svg .area { fill: rgba(217,165,74,0.08); stroke: none; }
.filter-type strong { display: block; margin-top: 8px; font-size: 14px; font-weight: 600; }
.filter-type span { font-size: 12.5px; color: var(--muted); }
.subhead { font-family: var(--font-display); font-size: 22px; margin-bottom: 18px; }
.param-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.param-grid div { background: var(--bg); padding: 18px; }
.section--alt .param-grid div { background: var(--bg-2); }
.param-grid dt { font-weight: 600; font-size: 15px; }
.param-grid dd { margin: 4px 0 0; color: var(--text-2); font-size: 14px; }

/* ---------------------------------------------------------------- GALLERY */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery__item { grid-column: span 4; margin: 0; }
.gallery__item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.gallery__item:nth-child(1) .shot { height: calc(100% - 64px); aspect-ratio: auto; min-height: 280px; }
.gallery__item figcaption { padding: 14px 4px 0; }
.gallery__item figcaption strong { display: block; font-size: 15px; font-weight: 600; }
.gallery__item figcaption strong em { font-style: normal; color: var(--muted); font-weight: 500; }
.gallery__item figcaption span { font-size: 13.5px; color: var(--muted); }
.gallery__btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; text-align: left; border-radius: var(--radius); }

/* ---------------------------------------------------------------- CREATIVITY */
.creativity { text-align: center; overflow: hidden; }
.creativity blockquote { margin: 0 auto; max-width: 980px; font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 5.4vw, 68px); line-height: 1.08; letter-spacing: -0.03em; }
.creativity p.lead { margin: 26px auto 0; max-width: 640px; color: var(--text-2); font-size: clamp(16px, 1.6vw, 19px); }
.creativity__shot { margin-top: clamp(48px, 7vw, 90px); position: relative; }
.creativity__shot .app-window { max-width: 1280px; margin: 0 auto; }
.creativity__shot::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: 20%; bottom: -10%;
  background: radial-gradient(ellipse at center, rgba(217,165,74,0.14), transparent 65%); filter: blur(30px); z-index: 0; pointer-events: none;
}
.creativity__shot .app-window { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- EN EL ESTUDIO */
.people { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.person { margin: 0; }
.person .shot { border-radius: var(--radius-l); }
.person figcaption { padding: 16px 4px 0; }
.person figcaption strong { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.person figcaption span { color: var(--text-2); font-size: 14.5px; }
.people-note { grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 10px; font-family: var(--font-mono); letter-spacing: .03em; }
@media (max-width: 900px) { .people { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 4px; position: relative;
  font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 20px); font-weight: 550;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--gold-soft); }
.faq__a { padding: 0 48px 24px 4px; color: var(--text-2); font-size: 16px; }
.faq__a a { color: var(--gold-soft); }

/* ---------------------------------------------------------------- DOWNLOAD */
.download {
  position: relative; overflow: hidden; text-align: center;
  border-top: 1px solid var(--line);
}
.download__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../assets/backgrounds/febo-banner.jpg") center / cover no-repeat;
  opacity: .35;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
}
.download .container { position: relative; z-index: 1; }
.download__emblem { width: 88px; height: 88px; margin: 0 auto 26px; border-radius: 22px; box-shadow: 0 20px 50px -20px rgba(217,165,74,0.5); }
.download h2 { font-size: clamp(38px, 6vw, 72px); }
.download p.lead { margin: 18px auto 0; max-width: 560px; color: var(--text-2); font-size: clamp(16px, 1.6vw, 19px); }
.download__actions { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.os-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; }
.os {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line-strong); background: rgba(12,13,16,0.8);
  min-width: 230px; text-decoration: none; transition: border-color .25s, transform .25s var(--ease);
}
a.os:hover { border-color: rgba(233,192,122,0.5); transform: translateY(-2px); }
.os svg { width: 26px; height: 26px; flex: none; color: var(--silver); }
.os strong { display: block; font-size: 15.5px; font-weight: 600; }
.os span { font-size: 12.5px; color: var(--muted); }
.os--soon { border-style: dashed; opacity: .75; }
.download__version { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .08em; }

/* ---------------------------------------------------------------- FOOTER */
.footer { border-top: 1px solid var(--line); padding: 64px 0 36px; background: #050506; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 42px; width: auto; }
.footer__brand p { margin-top: 14px; color: var(--muted); font-size: 14.5px; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { color: var(--text-2); text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: var(--gold-soft); }
.footer .is-soon { color: var(--muted); font-size: 14.5px; }
.footer .is-soon em { font-style: normal; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-left: 6px; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }

/* ---------------------------------------------------------------- LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 4, 5, 0.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: none; flex-direction: column;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox.is-open { display: flex; }
.lightbox.is-visible { opacity: 1; }
.lightbox__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px clamp(12px, 3vw, 24px); flex: none; }
.lightbox__counter { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .1em; }
.lightbox__tools { display: flex; gap: 8px; }
.lb-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-strong); color: var(--text);
  transition: background .2s, border-color .2s;
}
.lb-btn:hover { background: rgba(255,255,255,0.12); }
.lb-btn svg { width: 18px; height: 18px; }
.lightbox__stage { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 0 clamp(8px, 7vw, 90px); overflow: hidden; touch-action: none; }
.lightbox__img {
  max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform-origin: center; transition: transform .3s var(--ease); cursor: zoom-in; user-select: none; -webkit-user-drag: none;
}
.lightbox.is-zoomed .lightbox__img { cursor: grab; }
.lightbox.is-dragging .lightbox__img { transition: none; cursor: grabbing; }
.lightbox__ph { width: min(900px, 100%); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.lightbox__nav--prev { left: clamp(8px, 2vw, 24px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 24px); }
.lightbox__caption { flex: none; text-align: center; padding: 16px 20px 22px; }
.lightbox__caption strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.lightbox__caption strong em { font-style: normal; color: var(--muted); font-weight: 500; }
.lightbox__caption span { color: var(--text-2); font-size: 14px; }

/* ---------------------------------------------------------------- PÁGINA DE PLUGIN */
.page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 900px; height: 500px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(217,165,74,0.1), transparent 65%); pointer-events: none; z-index: -1;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--muted); list-style: none; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.plugin-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: 30px; }
.plugin-hero h1 { font-size: clamp(40px, 6vw, 72px); margin: 14px 0 12px; }
.plugin-hero__tag { font-size: clamp(18px, 2vw, 22px); color: var(--text); font-family: var(--font-display); }
.plugin-hero__desc { margin-top: 14px; color: var(--text-2); font-size: 16.5px; }
.plugin-hero__meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.plugin-section { padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--line); }
.plugin-section h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 26px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.prose p + p { margin-top: 14px; }
.prose p { color: var(--text-2); font-size: 16.5px; }
.breakdown { list-style: none; counter-reset: bd; display: grid; gap: 10px; }
.breakdown li { counter-increment: bd; display: grid; grid-template-columns: 36px 1fr; gap: 2px 14px; padding: 16px 18px; border-radius: 12px; background: var(--surface-1); border: 1px solid var(--line); }
.breakdown li::before { content: counter(bd, decimal-leading-zero); grid-row: span 2; font-family: var(--font-mono); color: var(--gold); font-size: 13px; padding-top: 2px; }
.breakdown strong { font-weight: 600; }
.breakdown span { color: var(--text-2); font-size: 14.5px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 12px; color: var(--text-2); }
.ticks li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 4px; border-radius: 50%; border: 1px solid var(--gold-deep); background: radial-gradient(circle, var(--gold) 0 3px, transparent 4px); }
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table th, .tech-table td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.tech-table th { font-weight: 500; color: var(--muted); width: 42%; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding-top: 17px; }
.plugin-shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.plugin-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plugin-pager a {
  display: block; padding: 22px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface-1); text-decoration: none;
  transition: border-color .25s, transform .25s var(--ease);
}
.plugin-pager a:hover { border-color: rgba(233,192,122,0.4); transform: translateY(-2px); }
.plugin-pager small { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.plugin-pager strong { display: block; margin-top: 6px; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.plugin-pager .next { text-align: right; }
.not-found { padding: calc(var(--nav-h) + 120px) 0 120px; text-align: center; }
.not-found h1 { font-size: clamp(32px, 5vw, 52px); }
.not-found p { color: var(--text-2); margin: 14px 0 28px; }

/* ---------------------------------------------------------------- Animaciones sutiles */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hotspot::before { display: none; }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 1100px) {
  .musicians { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hotspot-layout { grid-template-columns: 1fr; }
  .hotspot-panel { position: static; }
  .hotspot-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .daw-intro, .workflow, .inside-panel, .fpro__top, .schematic-wrap, .plugin-hero, .two-col { grid-template-columns: 1fr; }
  .workflow__steps { display: flex; overflow-x: auto; gap: 4px; padding-bottom: 8px; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
  .workflow__steps::-webkit-scrollbar { display: none; }
  .workflow__steps::before { display: none; }
  .workflow__arrow { display: none; }
  .workflow__step { flex: none; }
  .workflow__step button { flex-direction: column; gap: 8px; padding: 6px 8px; }
  .workflow__label { font-size: 12px; letter-spacing: .14em; }
  .gallery__item, .gallery__item:nth-child(1) { grid-column: span 6; grid-row: auto; }
  .gallery__item:nth-child(1) .shot { height: auto; aspect-ratio: 16 / 10; min-height: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .nav__logo img { height: 28px; }
  .musicians { grid-template-columns: 1fr 1fr; }
  .musician:last-child { grid-column: 1 / -1; }
  .feature-grid, .plugin-grid { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item:nth-child(1) { grid-column: 1 / -1; }
  .hero__actions .btn { flex: 1 1 100%; --h: 52px; }
  .hotspot { width: 24px; height: 24px; font-size: 10px; }
  .hotspot-list { grid-template-columns: 1fr; }
  .feature { padding: 22px; }
  .plugin-pager { grid-template-columns: 1fr; }
  .plugin-pager .next { text-align: left; }
  .os { min-width: 0; width: 100%; }
  .os-list { width: 100%; flex-direction: column; }
  .download__actions .btn { width: 100%; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .lightbox__stage { padding: 0 8px; }
  .lightbox__nav { top: auto; bottom: 8px; transform: none; }
  .tech-table th { width: 45%; }
}
