/* =====================================================================
   NOCTURNA — Section-specific styles
   ===================================================================== */

/* -------------------------------------------------------------------
   HERO — Inicio
   ------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(88, 33, 138, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    var(--noc-ink-canvas);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-16);
  }
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow {
  margin-bottom: var(--sp-5);
}
.hero__title {
  margin-bottom: var(--sp-5);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.4;
  color: var(--noc-text-muted);
  max-width: 480px;
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .hero__sub { font-size: 19px; }
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-top: var(--sp-4);
}
@media (min-width: 1024px) {
  .hero__visual { min-height: 520px; margin-top: 0; }
}

.hero__phone {
  position: relative;
  width: 230px;
  aspect-ratio: 9 / 19;
  background: var(--noc-ink-surface);
  border-radius: 36px;
  border: 8px solid #0a061d;
  box-shadow: 0 0 80px rgba(147, 68, 209, 0.35),
              inset 0 0 0 1px rgba(147, 68, 209, 0.2);
  overflow: hidden;
  z-index: 3;
}
@media (min-width: 1024px) {
  .hero__phone { width: 280px; }
}
.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--noc-ink-canvas);
  position: relative;
  overflow: hidden;
}

/* Mini map mockup inside phone */
.minimap {
  position: absolute;
  inset: 0;
  background: #0d0820;
  overflow: hidden;
}
.minimap__grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(147, 68, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 68, 209, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: perspective(400px) rotateX(45deg);
  transform-origin: center top;
}
.minimap__streets svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.minimap__pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: pin-in 0.6s cubic-bezier(.2,.8,.2,1) forwards;
}
.minimap__pin::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--c, var(--noc-violet));
  box-shadow: 0 0 12px var(--c, var(--noc-violet));
}
.minimap__pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c, var(--noc-violet));
  opacity: 0.6;
  animation: pin-ring 2s ease-out infinite;
}
@keyframes pin-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes pin-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .minimap__pin { animation: none; opacity: 1; }
  .minimap__pin::after { animation: none; opacity: 0; }
}

.minimap__notif {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 60px;
  padding: 10px 12px;
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet);
  border-radius: var(--r-md);
  font-size: 11px;
  color: var(--noc-text);
  box-shadow: 0 0 24px rgba(147, 68, 209, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.minimap__notif .dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--noc-success);
  box-shadow: 0 0 8px var(--noc-success);
}
.minimap__notif strong { display: block; font-weight: 700; font-size: 11px; }
.minimap__notif span { color: var(--noc-text-muted); font-size: 10px; }

.minimap__tabbar {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  height: 40px;
  background: rgba(20, 8, 45, 0.92);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.minimap__tab {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-text-muted);
}
.minimap__tab.is-active {
  background: var(--noc-violet);
  border-radius: 50%;
  color: var(--noc-text);
  box-shadow: 0 0 12px var(--noc-violet);
}
.minimap__tab svg { width: 14px; height: 14px; }

.minimap__statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--noc-text);
}

/* Floating party photo collage around phone */
.hero__collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__collage > * { pointer-events: auto; }
.hero__photo {
  position: absolute;
  border-radius: var(--r-md);
  border: 1px solid var(--noc-violet-line);
  overflow: hidden;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6),
              0 0 24px rgba(147, 68, 209, 0.18);
  transition: transform var(--t-slow);
}
.hero__photo--1 {
  top: 5%; right: 6%;
  width: 110px;
  aspect-ratio: 3 / 4;
  transform: rotate(6deg);
  z-index: 1;
}
.hero__photo--2 {
  bottom: 8%; left: 4%;
  width: 130px;
  aspect-ratio: 4 / 3;
  transform: rotate(-5deg);
  z-index: 1;
}
.hero__photo--3 {
  top: 12%; left: 8%;
  width: 90px;
  aspect-ratio: 1 / 1;
  transform: rotate(-9deg);
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  /* Push photos OUT of the phone footprint so they read as a floating
     collage flanking the device (phone is z-index 3, photos z-index 1 —
     they must sit beside it, not behind it). */
  .hero__photo--1 { width: 168px; top: 6%; right: -22%; }
  .hero__photo--2 { width: 184px; bottom: 6%; left: -13%; }
  .hero__photo--3 { display: block; width: 128px; top: 40%; left: -9%; }
}

/* Owl peeking at corner */
.hero__owl {
  position: absolute;
  top: -2%; right: -2%;
  width: 46px; height: 46px;
  z-index: 4;
  filter: drop-shadow(0 0 16px rgba(147, 68, 209, 0.6));
}
@media (min-width: 1024px) {
  /* Corner accent — clearly above & to the right of the phone, never on it. */
  .hero__owl { width: 76px; height: 76px; top: -12%; right: -26%; }
}

/* Hero noise overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Atmospheric neon beams */
.hero__beam {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.hero__beam--1 {
  top: -10%; left: 15%;
  width: 2px; height: 60%;
  background: linear-gradient(180deg, transparent, var(--noc-violet), transparent);
  filter: blur(1px);
  transform: rotate(15deg);
}
.hero__beam--2 {
  top: -10%; right: 25%;
  width: 1px; height: 70%;
  background: linear-gradient(180deg, transparent, var(--noc-cyan), transparent);
  opacity: 0.3;
  transform: rotate(-12deg);
}

/* -------------------------------------------------------------------
   SECTION 2 — Qué hace Nocturna por vos
   ------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
}
.feature {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: border-color var(--t-norm), transform var(--t-norm);
  position: relative;
  overflow: hidden;
}
.feature:hover {
  border-color: var(--noc-violet);
  transform: translateY(-2px);
}
.feature__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(147, 68, 209, 0.12);
  border: 1px solid rgba(147, 68, 209, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-violet);
  margin-bottom: var(--sp-5);
}
.feature:hover .feature__icon {
  background: rgba(147, 68, 209, 0.2);
  box-shadow: var(--shadow-glow-sm);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature__title {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 20px;
  margin-bottom: var(--sp-3);
}
.feature__copy {
  font-size: 15px;
  line-height: 1.5;
  color: var(--noc-text-muted);
}

.section__head {
  margin-bottom: var(--sp-8);
  max-width: 760px;
}
.section__head--center { margin: 0 auto var(--sp-8); text-align: center; }
.section__head .eyebrow { margin-bottom: var(--sp-4); }
.section__head .h2 { margin-bottom: var(--sp-4); }
.section__head .h1 { margin-bottom: var(--sp-4); }
.section__head p { color: var(--noc-text-muted); font-size: 17px; line-height: 1.5; }
@media (min-width: 768px) {
  .section__head { margin-bottom: var(--sp-12); }
}

.section__cta-row {
  margin-top: var(--sp-8);
  display: flex;
  justify-content: center;
}
.section__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--noc-violet);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--t-fast);
}
.section__link:hover { gap: var(--sp-3); }
.section__link::after { content: "→"; }

/* -------------------------------------------------------------------
   SECTION 3 — Carrusel app screens
   ------------------------------------------------------------------- */
.carousel {
  position: relative;
  margin: 0 calc(-1 * var(--page-pad));
  padding: 0 var(--page-pad);
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--sp-4);
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: center;
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 320ms cubic-bezier(.2,.8,.2,1),
              box-shadow 320ms cubic-bezier(.2,.8,.2,1);
  will-change: border-color, box-shadow;
}
@media (min-width: 768px) {
  .carousel__slide { width: 340px; }
}
/* Glow follows the active slide. */
.carousel__slide.is-active {
  border-color: var(--noc-violet);
  box-shadow: var(--shadow-glow-lg);
}
/* `.is-feature` is now ONLY a static distinguisher for the Pasaporte
   slide (color of the eyebrow label, set inline). No glow. */
.carousel__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid var(--noc-cyan);
  color: var(--noc-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.carousel__phone {
  position: relative;
  aspect-ratio: 9 / 17;
  background: var(--noc-ink-canvas);
  margin: var(--sp-4) var(--sp-4) 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--noc-violet-line);
}
.carousel__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.carousel__shot--top { object-position: center 0; }
.carousel__shot--bottom { object-position: center bottom; }
.carousel__caption {
  padding: var(--sp-5);
}
.carousel__caption .label {
  color: var(--noc-violet);
  margin-bottom: var(--sp-2);
}
.carousel__caption h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-3);
  color: var(--noc-text);
}
.carousel__caption p {
  font-size: 14px;
  color: var(--noc-text-muted);
  line-height: 1.5;
}
.carousel__caption a {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--noc-violet);
}
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.carousel__dots {
  display: flex;
  gap: var(--sp-2);
}
.carousel__dot {
  width: 24px; height: 4px;
  border-radius: 2px;
  background: var(--noc-violet-line);
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}
.carousel__dot.is-active { background: var(--noc-violet); width: 36px; }
.carousel__arrow {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--noc-violet-line);
  color: var(--noc-text);
  cursor: pointer;
  transition: all var(--t-fast);
}
.carousel__arrow:hover { border-color: var(--noc-violet); background: rgba(147, 68, 209, 0.1); }
.carousel__arrow svg { width: 16px; height: 16px; }

/* Mini-app mocks inside carousel phones */
.mock {
  position: absolute;
  inset: 0;
  background: var(--noc-ink-canvas);
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: var(--noc-text);
}
.mock__status {
  height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  font-size: 9px;
  font-weight: 600;
}
.mock__header {
  padding: 8px 14px 10px;
  border-bottom: 1px solid var(--noc-violet-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock__h1 { font-weight: 700; font-size: 14px; }
.mock__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid var(--noc-violet-line);
  background: rgba(147, 68, 209, 0.08);
  color: var(--noc-text);
}
.mock__body {
  padding: 10px 12px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock__filter-row {
  display: flex;
  gap: 6px;
  overflow: hidden;
}
.mock__filter {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 9999px;
  border: 1px solid var(--noc-violet-line);
  white-space: nowrap;
}
.mock__filter.is-active { background: var(--noc-text); color: var(--noc-ink-canvas); border-color: var(--noc-text); }
.mock__card {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.mock__card .img {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--noc-violet-900), var(--noc-violet-deeper));
}
.mock__card .meta { flex: 1; min-width: 0; overflow: hidden; }
.mock__card .name { font-weight: 600; font-size: 10px; }
.mock__card .sub { font-size: 8.5px; color: var(--noc-text-muted); margin-top: 2px; }
.mock__card .price {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--noc-violet);
}
.mock__bottom-nav {
  margin: auto 8px 8px;
  height: 32px;
  background: rgba(20, 8, 45, 0.92);
  border: 1px solid var(--noc-violet-line);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mock__bottom-nav .b {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-text-muted);
}
.mock__bottom-nav .b.is-active {
  width: 24px; height: 24px;
  background: var(--noc-violet);
  border-radius: 50%;
  color: var(--noc-text);
  box-shadow: 0 0 10px var(--noc-violet);
}
.mock__bottom-nav .b svg { width: 11px; height: 11px; }

/* Passport mock variants */
.mock__pts-card {
  background: var(--grad-radial-purple);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--noc-violet);
}
.mock__pts-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  color: var(--noc-text);
  line-height: 1;
}
.mock__pts-label {
  font-family: var(--font-mono);
  font-size: 9px;
  margin-top: 2px;
  letter-spacing: 0.06em;
  color: var(--noc-text);
  opacity: 0.7;
}
.mock__progress {
  margin-top: 8px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.mock__progress-fill {
  height: 100%;
  width: 65%;
  background: var(--noc-cyan);
}
.mock__pts-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  margin-top: 6px;
  color: var(--noc-text);
  opacity: 0.7;
}

/* -------------------------------------------------------------------
   SECTION 4 — Beneficios Fundador
   ------------------------------------------------------------------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) {
  .benefits { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
.benefit {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-norm), transform var(--t-norm);
}
.benefit:hover { border-color: var(--noc-violet); transform: translateY(-2px); }
.benefit__num {
  position: absolute;
  top: var(--sp-4); right: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--noc-text-dim);
  letter-spacing: 0.06em;
}
.benefit__visual {
  width: 80px; height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative;
}
.benefit__title {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 19px;
  margin-bottom: var(--sp-2);
}
.benefit__copy {
  font-size: 14px;
  color: var(--noc-text-muted);
  line-height: 1.5;
}

/* Founder badge visual */
.badge-medal {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-radial-purple);
  border: 2px solid var(--noc-violet);
  box-shadow: var(--shadow-glow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-medal svg { width: 44px; height: 44px; }

/* -------------------------------------------------------------------
   SECTION 5 — Comunidad
   ------------------------------------------------------------------- */
.community {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .community { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: left;
  transition: all var(--t-norm);
  position: relative;
  overflow: hidden;
}
.stat:hover { border-color: var(--noc-violet); }
.stat__platform {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noc-violet);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.stat__platform svg { width: 14px; height: 14px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--noc-text);
  font-feature-settings: "tnum";
}
@media (min-width: 768px) {
  .stat__num { font-size: 80px; }
}
.stat__unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--noc-text-muted);
  margin-top: var(--sp-3);
}
.stat__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--noc-violet);
  transition: gap var(--t-fast);
}
.stat__link:hover { gap: var(--sp-3); }

/* -------------------------------------------------------------------
   SECTION 6 — CTA final
   ------------------------------------------------------------------- */
.cta-final {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(88, 33, 138, 0.5) 0%, transparent 70%),
    var(--noc-ink-canvas);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-final__owl {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-6);
  filter: drop-shadow(0 0 24px rgba(147, 68, 209, 0.7));
}
.cta-final h2 { margin-bottom: var(--sp-4); }
.cta-final p {
  color: var(--noc-text-muted);
  font-size: 17px;
  margin-bottom: var(--sp-8);
}
.cta-final .waitlist {
  max-width: 520px;
  margin: 0 auto;
}
.cta-final__bullets {
  margin-top: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--noc-text-muted);
  letter-spacing: 0.02em;
}
.cta-final__bullets li {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.cta-final__bullets li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--noc-violet);
}

/* -------------------------------------------------------------------
   PASAPORTE — Hero
   ------------------------------------------------------------------- */
.pp-hero {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(88, 33, 138, 0.4) 0%, transparent 60%),
    var(--noc-ink-canvas);
  position: relative;
  overflow: hidden;
}
.pp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .pp-hero__inner { grid-template-columns: 1.1fr 1fr; gap: var(--sp-16); }
}
.pp-hero__sub {
  font-size: 17px;
  color: var(--noc-text-muted);
  margin: var(--sp-5) 0 var(--sp-8);
  max-width: 540px;
  line-height: 1.5;
}
.pp-hero__visual {
  display: flex;
  justify-content: center;
}
.pp-card {
  width: 100%;
  max-width: 360px;
  background: var(--grad-radial-purple);
  border: 1px solid var(--noc-violet);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-glow-lg);
  position: relative;
  overflow: hidden;
}
.pp-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.pp-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pp-card__avatar svg { width: 32px; height: 32px; }
.pp-card__avatar .ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--noc-cyan);
  opacity: 0.7;
}
.pp-card__user {
  font-weight: var(--fw-bold);
  font-size: 17px;
  color: var(--noc-text);
}
.pp-card__lvl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--noc-cyan);
  margin-top: 2px;
}
.pp-card__pts {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.pp-card__pts .num {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--noc-text);
}
.pp-card__pts .unit {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--noc-text);
  opacity: 0.7;
}
.pp-card__progress {
  height: 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.pp-card__progress-fill {
  height: 100%;
  width: 65%;
  background: var(--noc-cyan);
  box-shadow: 0 0 12px var(--noc-cyan);
}
.pp-card__progress-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--noc-text);
  opacity: 0.7;
}
.pp-card__achievements {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: var(--sp-3);
}
.pp-card__ach {
  flex: 1;
  text-align: center;
}
.pp-card__ach .icon {
  width: 40px; height: 40px;
  margin: 0 auto var(--sp-2);
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--noc-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-card__ach.is-locked .icon { opacity: 0.4; }
.pp-card__ach svg { width: 18px; height: 18px; color: var(--noc-cyan); }
.pp-card__ach.is-locked svg { color: var(--noc-text-muted); }
.pp-card__ach .name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--noc-text);
  opacity: 0.7;
  line-height: 1.2;
}

/* -------------------------------------------------------------------
   PASAPORTE — Puntos table
   ------------------------------------------------------------------- */
.pts-table {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pts-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--noc-violet-line);
  transition: background var(--t-fast);
  position: relative;
  overflow: hidden;
}
.pts-row:last-child { border-bottom: none; }
.pts-row:hover { background: rgba(147, 68, 209, 0.08); }
.pts-row__left {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-width: 0;
}
.pts-row__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-violet);
  background: rgba(147, 68, 209, 0.1);
  border-radius: var(--r-sm);
}
.pts-row__icon svg { width: 18px; height: 18px; }
.pts-row__action {
  font-size: 15px;
  font-weight: var(--fw-semibold);
}
.pts-row__pts {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--noc-violet);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .pts-row__pts { font-size: 22px; }
}
.pts-row__float {
  position: absolute;
  right: 80px;
  top: 50%;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--noc-cyan);
  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-norm);
}
.pts-row:hover .pts-row__float {
  opacity: 1;
  transform: translateY(-50%) translateY(-12px);
}
@media (prefers-reduced-motion: reduce) {
  .pts-row__float { display: none; }
}

/* -------------------------------------------------------------------
   PASAPORTE — Logros grid
   ------------------------------------------------------------------- */
.achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .achievements { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
}
.ach {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  text-align: center;
  transition: all var(--t-norm);
  position: relative;
  overflow: hidden;
}
.ach:hover {
  border-color: var(--noc-violet);
  transform: translateY(-3px);
}
.ach__owl {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-4);
  transition: transform var(--t-norm);
}
.ach:hover .ach__owl { transform: scale(1.08) rotate(-3deg); }
.ach.is-locked .ach__owl { opacity: 0.35; filter: grayscale(0.8); }
.ach__name {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 14px;
  line-height: 1.15;
  margin-bottom: var(--sp-2);
  color: var(--noc-text);
}
.ach__desc {
  font-size: 12px;
  color: var(--noc-text-muted);
  line-height: 1.35;
  margin-bottom: var(--sp-3);
  min-height: 32px;
}
.ach__pts {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--noc-violet);
  letter-spacing: 0.04em;
}
.ach.is-locked .ach__pts { color: var(--noc-text-muted); }
.ach__lock {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-text-muted);
}
.ach__lock svg { width: 12px; height: 12px; }
.ach.is-locked { opacity: 0.85; }
.ach.is-locked:hover { opacity: 1; border-color: var(--noc-text-muted); }
.ach__cat {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noc-cyan);
  opacity: 0.7;
}

/* -------------------------------------------------------------------
   PASAPORTE — Ranking
   ------------------------------------------------------------------- */
.ranking {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .ranking { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}
.ranking__board {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ranking__header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--noc-violet-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ranking__header h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 17px;
}
.ranking__tabs {
  display: flex;
  gap: var(--sp-1);
  font-family: var(--font-mono);
  font-size: 11px;
}
.ranking__tab {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--noc-text-muted);
  transition: all var(--t-fast);
  cursor: pointer;
  border: 1px solid transparent;
}
.ranking__tab.is-active {
  color: var(--noc-text);
  border-color: var(--noc-violet-line);
  background: rgba(147, 68, 209, 0.1);
}
.ranking__row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--noc-violet-line);
}
.ranking__row:last-child { border-bottom: none; }
.ranking__row.is-you {
  background: rgba(147, 68, 209, 0.12);
  border-left: 2px solid var(--noc-violet);
  position: relative;
}
.ranking__rank {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--noc-text-muted);
}
.ranking__rank.is-top { color: var(--noc-warning); }
.ranking__name { display: flex; align-items: center; gap: var(--sp-3); }
.ranking__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-radial-purple);
  border: 1px solid var(--noc-violet-line);
  flex-shrink: 0;
}
.ranking__handle {
  font-size: 14px;
  font-weight: var(--fw-semibold);
}
.ranking__pts {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--noc-text);
}
.ranking__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.ranking__detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.ranking__detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(147, 68, 209, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--noc-violet);
  flex-shrink: 0;
}
.ranking__detail-icon svg { width: 20px; height: 20px; }
.ranking__detail-content h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 17px;
  margin-bottom: 4px;
}
.ranking__detail-content p {
  font-size: 14px;
  color: var(--noc-text-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------------
   PASAPORTE — Beneficios cards
   ------------------------------------------------------------------- */
.pts-uses {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px) {
  .pts-uses { grid-template-columns: repeat(3, 1fr); }
}
.pts-use {
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--t-norm);
}
.pts-use:hover { border-color: var(--noc-violet); transform: translateY(-2px); }
.pts-use__visual {
  width: 100%;
  aspect-ratio: 1.6;
  margin-bottom: var(--sp-5);
  background: var(--grad-radial-purple);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pts-use__visual svg { width: 56px; height: 56px; color: var(--noc-text); }
.pts-use h3 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 19px;
  margin-bottom: var(--sp-3);
}
.pts-use p {
  font-size: 14px;
  color: var(--noc-text-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------- */
.faq-hero {
  padding-top: calc(72px + var(--sp-12));
  padding-bottom: var(--sp-12);
}
.faq-search {
  margin-top: var(--sp-8);
  position: relative;
  max-width: 540px;
}
.faq-search input {
  width: 100%;
  height: 56px;
  padding: 0 var(--sp-5) 0 52px;
  border-radius: var(--r-md);
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  color: var(--noc-text);
  font-size: 15px;
  outline: none;
  transition: all var(--t-fast);
}
.faq-search input:focus {
  border-color: var(--noc-violet);
  box-shadow: 0 0 0 3px rgba(147, 68, 209, 0.2);
}
.faq-search__icon {
  position: absolute;
  top: 50%; left: 16px;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--noc-text-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 220px 1fr; gap: var(--sp-12); }
}
.faq-sidebar {
  position: sticky;
  top: 96px;
  display: none;
}
@media (min-width: 1024px) {
  .faq-sidebar { display: block; }
}
.faq-sidebar__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noc-violet);
  margin-bottom: var(--sp-4);
}
.faq-sidebar ul li { margin-bottom: var(--sp-3); }
.faq-sidebar a {
  display: block;
  font-size: 14px;
  color: var(--noc-text-muted);
  padding: var(--sp-1) 0;
  border-left: 2px solid transparent;
  padding-left: var(--sp-3);
  transition: all var(--t-fast);
}
.faq-sidebar a:hover { color: var(--noc-text); border-left-color: var(--noc-violet-line); }
.faq-sidebar a.is-active { color: var(--noc-violet); border-left-color: var(--noc-violet); }

.faq-chips {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--page-pad));
  padding: 0 var(--page-pad) var(--sp-2);
}
.faq-chips::-webkit-scrollbar { display: none; }
.faq-chips a {
  flex-shrink: 0;
  height: 34px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--noc-violet-line);
  color: var(--noc-text);
  font-size: 13px;
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .faq-chips { display: none; }
}

.faq-group { margin-bottom: var(--sp-10); scroll-margin-top: 96px; }
.faq-group__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
  color: var(--noc-text);
}
.faq-group__title em { color: var(--noc-violet); font-style: normal; }

.faq-item {
  border-top: 1px solid var(--noc-violet-line);
  padding: var(--sp-5) 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--noc-violet-line); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--noc-text);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-item__q:hover { color: var(--noc-violet); }
.faq-item__q .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--noc-violet-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.faq-item__q .chev svg { width: 12px; height: 12px; transition: transform var(--t-norm); }
.faq-item.is-open .chev {
  background: var(--noc-violet);
  border-color: var(--noc-violet);
}
.faq-item.is-open .chev svg { transform: rotate(45deg); }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(.2,.8,.2,1), padding 320ms cubic-bezier(.2,.8,.2,1);
}
.faq-item__a-inner {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
  color: var(--noc-text-muted);
  max-width: 720px;
}
.faq-item__a p { margin-bottom: var(--sp-3); }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a a { color: var(--noc-violet); border-bottom: 1px solid currentColor; }
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; padding-top: var(--sp-4); }
.faq-item__placeholder {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--noc-warning);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(225, 202, 23, 0.08);
  border: 1px solid rgba(225, 202, 23, 0.2);
}

.faq-contact {
  margin-top: var(--sp-16);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(88, 33, 138, 0.5) 0%, transparent 60%),
    var(--noc-ink-surface);
  border: 1px solid var(--noc-violet);
  border-radius: var(--r-lg);
  padding: var(--sp-12) var(--sp-6);
  text-align: center;
}
@media (min-width: 768px) {
  .faq-contact { padding: var(--sp-16); }
}
.faq-contact h2 { margin-bottom: var(--sp-4); }
.faq-contact p {
  color: var(--noc-text-muted);
  font-size: 17px;
  margin-bottom: var(--sp-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.faq-contact__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  justify-content: center;
}
@media (min-width: 540px) {
  .faq-contact__ctas { flex-direction: row; }
}
