/* ============================================================
   NOCTA — Home v2  (editorial / gallery redesign)
   Self-contained layer. Loads AFTER styles.css and overrides
   only the Home. No other page is affected.
   ============================================================ */

/* Fuentes Inter + Instrument Serif: cargadas desde el <head> de las páginas
   que usan esta capa (index, tarifa) con preconnect + <link> (PERF-03). */

:root {
  --n-bg:      #08080A;
  --n-bg-2:    #0C0C0F;
  --n-ink:     #F4F4F2;
  --n-mute:    rgba(244, 244, 242, 0.60);
  /* A11Y-02: era 0.30 (~2.4:1, suspende AA). Se usa como color de TEXTO
     (eyebrows, metadatos, labels). Para decoración pura usar --n-ghost. */
  --n-faint:   rgba(244, 244, 242, 0.55);
  --n-ghost:   rgba(244, 244, 242, 0.14);
  --n-line:    rgba(244, 244, 242, 0.09);
  --n-line-2:  rgba(244, 244, 242, 0.05);
  --n-live:    #C8FF00;                     /* accent used surgically */
  --n-live-soft: rgba(200, 255, 0, 0.55);

  --n-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --n-serif: 'Instrument Serif', Georgia, serif;

  --n-ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --n-gut:   clamp(24px, 6vw, 120px);       /* horizontal gutter */
}

/* ---------- base / overrides ---------- */
.home-v2 {
  background: var(--n-bg);
  color: var(--n-ink);
  font-family: var(--n-sans);
  font-weight: 300;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.home-v2 ::selection { background: var(--n-live); color: #000; }

.n-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--n-faint);
}

/* generic reveal — slow & elegant */
.home-v2 [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.4s var(--n-ease), transform 1.4s var(--n-ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.home-v2 [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .home-v2 [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV  (override of styles.css .nav)
   ============================================================ */
.home-v2 .nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  height: auto;
  min-height: 0;
  padding: 26px var(--n-gut);
  transition: background .6s var(--n-ease), border-color .6s var(--n-ease),
              padding .6s var(--n-ease);
  mix-blend-mode: normal;
}
.home-v2 .nav.scrolled {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--n-line);
  padding: 18px var(--n-gut);
}
.home-v2 .nav-logo {
  font-family: var(--n-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.22em !important;
  color: var(--n-ink);
}
.home-v2 .nav-logo span { color: var(--n-faint); font-weight: 300; }
.home-v2 .nav-links { gap: 40px; align-items: center; }
.home-v2 .nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--n-mute);
  transition: color .4s var(--n-ease);
}
.home-v2 .nav-links a:hover { color: var(--n-ink); }
.home-v2 .nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--n-ghost);
  border-radius: 100px;
  color: var(--n-ink) !important;
  transition: border-color .4s var(--n-ease), background .4s var(--n-ease), color .4s var(--n-ease);
}
.home-v2 .nav-cta:hover {
  background: var(--n-ink);
  color: #000 !important;
  border-color: var(--n-ink);
}
.home-v2 .nav-hamburger span { background: var(--n-ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.n-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--n-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--n-ink);
  color: #000;
  border: 1px solid var(--n-ink);
  transition: transform .5s var(--n-ease), background .5s var(--n-ease),
              color .5s var(--n-ease), border-color .5s var(--n-ease);
}
.n-btn .n-btn-arrow { transition: transform .5s var(--n-ease); }
.n-btn:hover { transform: translateY(-2px); }
.n-btn:hover .n-btn-arrow { transform: translateX(5px); }
.n-btn--ghost {
  background: transparent;
  color: var(--n-ink);
  border-color: var(--n-ghost);
}
.n-btn--ghost:hover { border-color: var(--n-ink); }

/* ============================================================
   HERO
   ============================================================ */
.n-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--n-gut) 80px;
  overflow: hidden;
  background: var(--n-bg);
}
/* breathing backdrop — extremely subtle */
.n-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(200,255,0,0.045), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(120,120,140,0.06), transparent 70%);
  animation: nBreath 16s var(--n-ease) infinite alternate;
  pointer-events: none;
}
.n-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--n-line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--n-line-2) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(70% 60% at 50% 45%, #000 0%, transparent 85%);
  opacity: .6;
  pointer-events: none;
}
@keyframes nBreath {
  0%   { transform: scale(1) translateY(0); opacity: .8; }
  100% { transform: scale(1.12) translateY(-2%); opacity: 1; }
}

.n-hero-inner { position: relative; z-index: 2; max-width: 1400px; width: 100%; margin: 0 auto; }

.n-hero-title {
  font-family: var(--n-sans);
  font-weight: 300;
  font-size: clamp(3.4rem, 12vw, 11rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0;
}
.n-hero-title .dot { color: var(--n-live); }
.n-hero-sub {
  margin-top: clamp(28px, 4vh, 44px);
  max-width: 44ch;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--n-mute);
}
.n-hero-actions { margin-top: clamp(36px, 5vh, 56px); }

.n-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--n-faint);
  z-index: 2;
}
.n-scroll-hint i {
  width: 1px; height: 46px;
  background: linear-gradient(var(--n-faint), transparent);
  animation: nScroll 2.6s var(--n-ease) infinite;
}
@keyframes nScroll { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.n-section {
  padding: clamp(110px, 16vh, 220px) var(--n-gut);
  position: relative;
}
.n-section--full { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.n-wrap { max-width: 1400px; margin: 0 auto; width: 100%; }
.n-section-head { display: flex; flex-direction: column; gap: 22px; }
.n-section-title {
  font-weight: 300;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

/* ============================================================
   PROCESS  ("show, don't tell" — real interface)
   ============================================================ */
.n-process { background: var(--n-bg); }
.n-process-head { margin-bottom: clamp(48px, 8vh, 90px); }
.n-device {
  border: 1px solid var(--n-line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--n-bg-2), #090909);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}
.n-device-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--n-line);
}
.n-device-dots { display: flex; gap: 7px; }
.n-device-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--n-ghost); }
.n-device-name { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--n-faint); }
.n-device-live {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--n-mute);
}
.n-device-live b { width: 6px; height: 6px; border-radius: 50%; background: var(--n-live); box-shadow: 0 0 12px var(--n-live-soft); animation: nPulse 2.4s var(--n-ease) infinite; }
@keyframes nPulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.n-device-body { display: grid; grid-template-columns: 260px 1fr; min-height: 440px; }
.n-stage-rail { border-right: 1px solid var(--n-line); padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.n-stage-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px; border-radius: 10px;
  color: var(--n-faint);
  transition: color .8s var(--n-ease), background .8s var(--n-ease);
}
.n-stage-item.is-active { color: var(--n-ink); background: rgba(255,255,255,0.03); }
.n-stage-item.is-done { color: var(--n-mute); }
.n-stage-idx { font-size: 11px; letter-spacing: 0.1em; width: 20px; color: inherit; opacity: .6; }
.n-stage-name { font-size: 14px; font-weight: 400; letter-spacing: 0.01em; }
.n-stage-tick {
  margin-left: auto; width: 6px; height: 6px; border-radius: 50%;
  background: var(--n-ghost); transition: background .8s var(--n-ease), box-shadow .8s var(--n-ease);
}
.n-stage-item.is-active .n-stage-tick { background: var(--n-live); box-shadow: 0 0 12px var(--n-live-soft); }

.n-stage-view { position: relative; padding: 40px clamp(28px, 4vw, 56px); }
.n-panel {
  position: absolute; inset: 40px clamp(28px, 4vw, 56px);
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--n-ease), transform .9s var(--n-ease);
  pointer-events: none;
}
.n-panel.is-active { opacity: 1; transform: none; pointer-events: auto; }
.n-panel-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--n-faint); margin-bottom: 22px; }

.n-msg { max-width: 420px; padding: 18px 20px; border-radius: 14px 14px 14px 4px; background: rgba(255,255,255,0.04); border: 1px solid var(--n-line); font-size: 15px; color: var(--n-ink); line-height: 1.6; }
.n-msg small { display:block; margin-top: 10px; color: var(--n-faint); font-size: 12px; letter-spacing: .04em; }

.n-field { margin-bottom: 16px; }
.n-field-k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--n-faint); margin-bottom: 8px; }
.n-field-v { height: 40px; border-radius: 9px; border: 1px solid var(--n-line); background: rgba(255,255,255,0.02); display: flex; align-items: center; padding: 0 14px; font-size: 14px; color: var(--n-mute); overflow: hidden; }
.n-caret { display:inline-block; width:2px; height:16px; background: var(--n-live); margin-left: 2px; animation: nCaret 1s steps(1) infinite; }
@keyframes nCaret { 50% { opacity: 0; } }

.n-progress-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.n-progress-track { flex: 1; height: 3px; border-radius: 3px; background: var(--n-line); overflow: hidden; }
.n-progress-fill { height: 100%; width: 0; background: var(--n-live); transition: width 1.6s var(--n-ease); }
.n-progress-pct { font-size: 13px; color: var(--n-mute); font-variant-numeric: tabular-nums; min-width: 42px; text-align: right; }
.n-canvas-mock { height: 200px; border-radius: 12px; border: 1px solid var(--n-line); background: linear-gradient(135deg, #101012, #16161a); position: relative; overflow: hidden; }
.n-canvas-mock::after { content:""; position:absolute; inset:0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%); transform: translateX(-100%); animation: nShimmer 3.4s var(--n-ease) infinite; }
@keyframes nShimmer { to { transform: translateX(100%); } }

.n-review-note { display:flex; gap:14px; align-items:flex-start; padding: 16px 18px; border-left: 2px solid var(--n-live); background: rgba(200,255,0,0.04); border-radius: 4px 12px 12px 4px; max-width: 440px; }
.n-review-note .n-rn-txt { font-size: 14px; line-height: 1.6; color: var(--n-ink); }
.n-review-note small { color: var(--n-faint); font-size: 12px; }

.n-files { display: grid; gap: 12px; max-width: 440px; }
.n-file { display:flex; align-items:center; gap: 14px; padding: 14px 16px; border: 1px solid var(--n-line); border-radius: 10px; background: rgba(255,255,255,0.02); }
.n-file b { font-size: 14px; font-weight: 400; color: var(--n-ink); }
.n-file span { margin-left: auto; font-size: 12px; color: var(--n-faint); letter-spacing: .04em; }
.n-file i { width: 26px; height: 26px; border-radius: 7px; background: rgba(200,255,0,0.12); display:flex; align-items:center; justify-content:center; color: var(--n-live); font-size: 11px; font-style: normal; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.n-philosophy { text-align: left; }
.n-philosophy-quote {
  font-family: var(--n-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.n-philosophy-quote em { font-style: italic; color: var(--n-mute); }
.n-philosophy-body {
  margin-top: clamp(44px, 7vh, 80px);
  margin-left: auto;
  max-width: 560px;
  display: flex; flex-direction: column; gap: 26px;
}
.n-philosophy-body p { font-size: clamp(15px, 1.35vw, 18px); line-height: 1.8; color: var(--n-mute); font-weight: 300; }

/* ============================================================
   DASHBOARD  (product composition)
   ============================================================ */
.n-dash-head { margin-bottom: clamp(48px, 8vh, 90px); }
.n-dash {
  border: 1px solid var(--n-line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--n-bg-2), #090909);
  box-shadow: 0 50px 140px rgba(0,0,0,0.6);
}
.n-dash-top { display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--n-line); }
.n-dash-top .n-dash-logo { font-size: 13px; letter-spacing: 0.22em; font-weight: 500; }
.n-dash-top .n-dash-logo span { color: var(--n-faint); font-weight: 300; }
.n-dash-status { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--n-mute); letter-spacing: .04em; }
.n-dash-status b { padding: 5px 12px; border-radius: 100px; background: rgba(200,255,0,0.1); color: var(--n-live); font-weight: 500; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.n-dash-bell { position: relative; width: 20px; height: 20px; color: var(--n-mute); }
.n-dash-bell::after { content:""; position:absolute; top:-1px; right:-1px; width:6px; height:6px; border-radius:50%; background: var(--n-live); box-shadow: 0 0 8px var(--n-live-soft); }

.n-dash-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1px; background: var(--n-line); }
.n-dash-cell { background: var(--n-bg-2); padding: 26px 28px; }
.n-dash-cell h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--n-faint); font-weight: 500; margin-bottom: 22px; }

/* timeline */
.n-tl { display: flex; flex-direction: column; gap: 0; }
.n-tl-item { display: grid; grid-template-columns: 22px 1fr; gap: 14px; padding-bottom: 22px; position: relative; }
.n-tl-item:last-child { padding-bottom: 0; }
.n-tl-item::before { content:""; position:absolute; left: 10px; top: 18px; bottom: -4px; width: 1px; background: var(--n-line); }
.n-tl-item:last-child::before { display: none; }
.n-tl-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--n-ghost); margin-top: 4px; background: var(--n-bg-2); z-index: 1; }
.n-tl-item.done .n-tl-dot { background: var(--n-mute); border-color: var(--n-mute); }
.n-tl-item.now .n-tl-dot { background: var(--n-live); border-color: var(--n-live); box-shadow: 0 0 12px var(--n-live-soft); }
.n-tl-t { font-size: 14px; color: var(--n-ink); font-weight: 400; }
.n-tl-item.pending .n-tl-t { color: var(--n-faint); }
.n-tl-d { font-size: 12px; color: var(--n-faint); margin-top: 3px; letter-spacing: .02em; }

/* chat */
.n-chat { display: flex; flex-direction: column; gap: 12px; }
.n-bubble { max-width: 82%; padding: 12px 15px; border-radius: 14px; font-size: 13.5px; line-height: 1.55; }
.n-bubble.them { align-self: flex-start; background: rgba(255,255,255,0.04); border: 1px solid var(--n-line); border-bottom-left-radius: 4px; color: var(--n-ink); }
.n-bubble.me { align-self: flex-end; background: var(--n-ink); color: #000; border-bottom-right-radius: 4px; }
.n-typing { align-self: flex-start; display: flex; gap: 5px; padding: 12px 15px; background: rgba(255,255,255,0.04); border: 1px solid var(--n-line); border-radius: 14px; border-bottom-left-radius: 4px; }
.n-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--n-faint); animation: nType 1.3s var(--n-ease) infinite; }
.n-typing i:nth-child(2){ animation-delay: .15s } .n-typing i:nth-child(3){ animation-delay: .3s }
@keyframes nType { 0%,60%,100%{opacity:.25;transform:translateY(0)} 30%{opacity:1;transform:translateY(-3px)} }

/* deliveries */
.n-deliv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.n-deliv-item { border: 1px solid var(--n-line); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.02); }
.n-deliv-thumb { aspect-ratio: 4/3; background-size: cover; background-position: center; filter: brightness(.92); }
.n-deliv-cap { padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; }
.n-deliv-cap b { font-size: 12px; font-weight: 400; }
.n-deliv-cap span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--n-live); }

/* feedback + status */
.n-fb { display: flex; flex-direction: column; gap: 14px; }
.n-fb-bar { display: flex; align-items: center; gap: 12px; }
.n-fb-bar span { font-size: 12px; color: var(--n-mute); min-width: 78px; }
.n-fb-track { flex: 1; height: 4px; border-radius: 4px; background: var(--n-line); overflow: hidden; }
.n-fb-track i { display: block; height: 100%; background: var(--n-live); border-radius: 4px; }
.n-fb-note { font-size: 12.5px; color: var(--n-faint); line-height: 1.6; }

/* ============================================================
   SERVICES  (editorial rows)
   ============================================================ */
.n-serv-head { margin-bottom: clamp(40px, 6vh, 70px); }
.n-serv-list { border-top: 1px solid var(--n-line); }
.n-serv-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(38px, 6vh, 64px) 0;
  border-bottom: 1px solid var(--n-line);
  position: relative;
  transition: padding-left .6s var(--n-ease);
}
.n-serv-row:hover { padding-left: 18px; }
.n-serv-row::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width: 2px;
  background: var(--n-live); transform: scaleY(0); transform-origin: center;
  transition: transform .6s var(--n-ease);
}
.n-serv-row:hover::before { transform: scaleY(1); }
.n-serv-idx { font-size: 13px; color: var(--n-faint); letter-spacing: 0.1em; }
.n-serv-main { display: flex; flex-direction: column; gap: 12px; }
.n-serv-name {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1;
  color: var(--n-ink);
  transition: color .5s var(--n-ease);
}
.n-serv-desc { font-size: 14px; color: var(--n-mute); max-width: 52ch; line-height: 1.65; font-weight: 300; }
.n-serv-side { display: flex; align-items: center; gap: clamp(20px, 4vw, 54px); }
.n-serv-price { text-align: right; }
.n-serv-price em { display:block; font-style: normal; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--n-faint); margin-bottom: 6px; }
.n-serv-price b { font-size: clamp(18px, 2vw, 24px); font-weight: 400; color: var(--n-ink); font-variant-numeric: tabular-nums; }
.n-serv-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--n-ghost);
  display: flex; align-items: center; justify-content: center;
  color: var(--n-ink); flex-shrink: 0;
  transition: background .5s var(--n-ease), color .5s var(--n-ease), border-color .5s var(--n-ease), transform .5s var(--n-ease);
}
.n-serv-row:hover .n-serv-arrow { background: var(--n-ink); color: #000; border-color: var(--n-ink); transform: rotate(-45deg); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.n-cta {
  min-height: 100svh;
  background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: clamp(40px, 6vh, 64px);
  padding: 120px var(--n-gut);
}
.n-cta-title {
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 1; letter-spacing: -0.045em;
}
.n-cta-title .dot { color: var(--n-live); }

/* ============================================================
   FOOTER  (minimal override)
   ============================================================ */
.home-v2 .footer {
  background: #000;
  border-top: 1px solid var(--n-line);
  padding: 60px var(--n-gut);
}
.home-v2 .footer-logo { font-family: var(--n-sans); font-weight: 500; letter-spacing: 0.22em; }
.home-v2 .footer-logo span { color: var(--n-faint); font-weight: 300; }
.home-v2 .footer-links a,
.home-v2 .footer-legal a { color: var(--n-mute); }
.home-v2 .footer-links a:hover,
.home-v2 .footer-legal a:hover { color: var(--n-ink); }

/* preview banner */
.n-preview-flag {
  position: fixed; z-index: 999; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(8,8,10,0.8); backdrop-filter: blur(14px);
  border: 1px solid var(--n-line); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--n-mute);
}
.n-preview-flag b { width: 6px; height: 6px; border-radius: 50%; background: var(--n-live); box-shadow: 0 0 10px var(--n-live-soft); }
.n-preview-flag a { color: var(--n-ink); border-bottom: 1px solid var(--n-ghost); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .n-device-body { grid-template-columns: 1fr; }
  .n-stage-rail { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--n-line); }
  .n-stage-item { flex-shrink: 0; }
  .n-stage-tick { display: none; }
  .n-stage-view { min-height: 360px; }
  .n-dash-grid { grid-template-columns: 1fr; }
  .n-serv-row { grid-template-columns: 40px 1fr; gap: 18px; }
  .n-serv-side { grid-column: 1 / -1; justify-content: space-between; margin-top: 6px; }
  .n-philosophy-body { margin-left: 0; }
}
@media (max-width: 560px) {
  .n-deliv { grid-template-columns: 1fr; }
  .n-hero { padding-top: 120px; }
}
