picture{display:contents}
/* =========================================================
   Landing — Hero original (sin assets de terceros)
   ========================================================= */

:root {
  --orange: #ff8000;
  --orange-dark: #e66e00;
  --orange-soft: rgba(255, 128, 0, 0.14);
  --blue: #126dfb;
  --blue-ink: #0b4fbd;
  --pink: #ff4a95;
  --green: #21bf2b;
  --yellow: #ffb74a;
  --ink: #1f1f1f;
  --ink-soft: #424242;
  --ink-mute: #8c8c8c;
  --bg: #ffffff;
  --bg-2: #fafaf7;
  --bg-3: #f1efe9;
  --line: #e8e5dd;
  --radius-pill: 999px;
  --shadow-card: 0 30px 60px -20px rgba(17, 17, 28, 0.12), 0 10px 24px -10px rgba(17, 17, 28, 0.08);
  --shadow-pop: 0 20px 40px -14px rgba(255, 128, 0, 0.45);
  --f-display: "Bowlby One SC", "Arial Black", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 100% - 48px); margin: 0 auto; }

/* ==== Eyebrow / chips ========================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,128,0,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,128,0,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,128,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,128,0,0); }
}

/* ==== Display type ============================= */
.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-1 { font-size: clamp(36px, 5.6vw, 80px); }
.h-2 { font-size: clamp(34px, 4.8vw, 64px); }

.lead {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ==== Buttons ================================== */

/* ==== Hero (centered, phone below, grows on scroll) === */
.hero {
  position: relative;
  padding: 0;
  isolation: isolate;
}
.hero-scroll {
  position: relative;
  height: 240vh;
}
.hero-phone-inline {
  display: grid;
  place-items: center;
  margin-top: 30px;
}
.hero-phone-inline .hero-phone-stage {
  transform: scale(var(--phone-scale, 1));
  transform-origin: center top;
}

.hero-copy-sticky {
  position: sticky;
  top: 110px;
  z-index: 2;
  opacity: var(--copy-opacity, 1);
  transform: translateY(var(--copy-y, 0px));
  transition: opacity .08s linear, transform .08s linear;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,128,0,0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% 30%, rgba(18,109,251,0.09), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 55%, rgba(255,74,149,0.08), transparent 60%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,28,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,28,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 85%);
}

.hero-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-copy .lead { margin-left: auto; margin-right: auto; }
.hero-copy h1 { margin: 18px 0 22px; }
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy h1 .accent-blue { color: var(--blue); }
.hero-copy h1 .stroke { -webkit-text-stroke: 2px var(--ink); color: transparent; }

.hero-ctas { display: flex; gap: 12px; margin: 30px 0 28px; flex-wrap: wrap; justify-content: center; }

.hero-phone-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-top: -100vh;
  display: grid;
  place-items: start center;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}
.hero-side-label {
  position: absolute;
  top: 50%;
  font-family: var(--f-display);
  font-size: clamp(32px, 4.8vw, 75px);
  line-height: 1.02;
  color: var(--ink);
  pointer-events: none;
  opacity: var(--label-opacity, 0);
  transition: opacity .08s linear, transform .08s linear;
  z-index: 0;
}
.hero-side-label span.word { display: block; }
.hero-side-label.left {
  right: 50%;
  transform: translate(calc(-1 * var(--label-x, 0px)), -50%);
  text-align: right;
  padding-right: 24px;
}
.hero-side-label.right {
  left: 50%;
  transform: translate(var(--label-x, 0px), -50%);
  text-align: left;
  padding-left: 24px;
}
.hero-side-label .accent { color: var(--orange); }
.hero-side-label .accent-blue { color: var(--blue); }
.hero-phone-stage {
  position: relative;
  transform: scale(var(--phone-scale, 1)) translateY(var(--phone-y, 70vh));
  transition: transform .08s linear;
  transform-origin: center top;
  width: 290px;
  will-change: transform;
  z-index: 2;
}

.hero-phone-stage .phone {
  width: 100%;
  margin: 0 auto;
  animation: none;
}

/* When fully scaled, keep orbs hidden to avoid overlap overflow */
.hero-phone-stage .orb,
.hero-phone-stage .tag-badge {
  transition: opacity .3s ease;
}
.hero-phone-stage[data-grown="1"] .orb,
.hero-phone-stage[data-grown="1"] .tag-badge { opacity: 0; }

/* Keep existing .stage usage elsewhere untouched */
.stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.avatars { display: flex; }
.avatars .av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  margin-left: -10px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 13px;
}
.avatars .av:first-child { margin-left: 0; }
.avatars .av:nth-child(2) { background: linear-gradient(135deg, var(--blue), #6938ef); }
.avatars .av:nth-child(3) { background: linear-gradient(135deg, var(--green), #14a9e8); }
.avatars .av:nth-child(4) { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.hero-meta .stars { color: var(--orange); font-weight: 800; letter-spacing: 1px; font-size: 14px; }
.hero-meta .stars-sub { font-size: 13px; color: var(--ink-mute); }

/* ==== Hero stage: CSS phone + placeholders ====== */
.stage {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

/* --- CSS phone (drawn, not imported) --- */
.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 290 / 590;
  border-radius: 44px;
  background: #1f1f1f;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.05),
    0 40px 60px -20px rgba(255,128,0,0.35),
    0 20px 40px -15px rgba(0,0,0,0.25);
  animation: phoneFloat 6s ease-in-out infinite;
  z-index: 3;
  border: 3px solid var(--orange);
}
.phone::before {
  /* Dynamic Island / notch */
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.phone::after {
  /* Side button lines */
  content: "";
  position: absolute;
  left: -6px;
  top: 100px;
  width: 3px; height: 60px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 80px 0 0 var(--orange);
}
.phone .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #3a86ff 0%, #1d5fd8 100%);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* --- Placeholder screen content (striped) --- */
.screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.08) 0px,
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 10px
    ),
    linear-gradient(180deg, #3a86ff 0%, #1d5fd8 100%);
  color: #fff;
  padding: 48px 16px 16px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.screen-placeholder .sp-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.screen-placeholder .sp-chip {
  flex: 1;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.35);
  text-align: center;
}
.screen-placeholder .sp-main {
  flex: 1;
  border: 1.5px dashed rgba(255,255,255,0.45);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.screen-placeholder .sp-main strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.screen-placeholder .sp-footer {
  display: flex;
  gap: 6px;
}
.screen-placeholder .sp-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(255,255,255,0.3);
  text-align: center;
}

/* --- Floating placeholder orbs around phone --- */
.orb {
  position: absolute;
  display: grid;
  place-items: center;
  animation: bob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.32));
  pointer-events: none;
}
.orb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.orb-sm { width: 76px; height: 76px; }
.orb-md { width: 100px; height: 100px; }
.orb-lg { width: 118px; height: 118px; }
.orb.o1 { top: 2%; left: 2%; animation-delay: 0s; }
.orb.o2 { top: 12%; right: 0%; animation-delay: -0.8s; }
.orb.o3 { bottom: 18%; left: -2%; animation-delay: -1.6s; }
.orb.o4 { bottom: 2%; right: 4%; animation-delay: -2.4s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-12px) rotate(4deg); }
}

/* --- Floating tag badges --- */
.tag-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 10px 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 4;
  animation: bob 4s ease-in-out infinite;
}
.tag-badge .tag-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.tag-badge.t1 { top: 20%; left: -6%; animation-delay: -0.3s; }
.tag-badge.t1 .tag-icon { background: var(--orange); }
.tag-badge.t2 { bottom: 22%; right: -10%; animation-delay: -1.7s; }
.tag-badge.t2 .tag-icon { background: var(--green); }
.tag-badge .tag-title { font-weight: 800; font-size: 13px; display: block; }
.tag-badge .tag-sub { font-size: 11px; color: var(--ink-mute); font-weight: 500; display: block; }

/* ==== Marquee =================================== */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee {
  display: flex;
  gap: 48px;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity .2s;
}
.marquee-item:hover { opacity: 1; }
.marquee-item .chip {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center; font-size: 16px;
  font-family: var(--f-body);
  font-weight: 800;
}
.marquee-item.m1 .chip { background: #ffe8cc; color: var(--orange); }
.marquee-item.m2 .chip { background: #d9e7ff; color: var(--blue); }
.marquee-item.m3 .chip { background: #d6f5d9; color: var(--green); }
.marquee-item.m4 .chip { background: #fcd6e4; color: var(--pink); }
.marquee-item.m5 .chip { background: #fde4c2; color: var(--yellow); }
.marquee-item.m6 .chip { background: #e7dafd; color: #6938ef; }
@keyframes scroll { to { transform: translateX(calc(-50% - 24px)); } }

/* ==== Reveal animations ======================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==== Generic section =========================== */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lead { margin: 16px auto 0; text-align: center; }

/* ==== Panel / dashboard stack =================== */
.panel-section { background: var(--bg-2); }
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.panel-copy ul {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.panel-copy li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.panel-copy li:hover {
  transform: translateX(4px);
  border-color: var(--orange);
  box-shadow: 0 10px 30px -20px rgba(255,128,0,.4);
}
.panel-copy li .num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
}
.panel-copy li strong { display: block; font-size: 15px; margin-bottom: 2px; }
.panel-copy li span.d { font-size: 14px; color: var(--ink-soft); }

.panel-stack {
  position: relative;
  aspect-ratio: 5 / 4;
}
.panel-stack .pcard {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.panel-stack .pcard.c1 { transform: translate(-12%, -8%) rotate(-5deg) scale(0.88); }
.panel-stack .pcard.c2 { transform: translate(10%, -4%) rotate(4deg) scale(0.9); }
.panel-stack .pcard.c3 { transform: translate(0, 8%) scale(1); z-index: 2; }
.panel-stack:hover .pcard.c1 { transform: translate(-22%, -14%) rotate(-9deg) scale(0.88); }
.panel-stack:hover .pcard.c2 { transform: translate(20%, -8%) rotate(8deg) scale(0.9); }
.panel-stack:hover .pcard.c3 { transform: translate(0, 10%) scale(1.02); }

.pcard-bar {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-mute);
}
.pcard-bar .bdot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.pcard-bar .bdot:nth-child(2) { background: #ffcf4a; }
.pcard-bar .bdot:nth-child(3) { background: #21bf2b; }
.pcard-body {
  flex: 1;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(17,17,28,0.025) 0,
      rgba(17,17,28,0.025) 1px,
      transparent 1px,
      transparent 8px
    );
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-mute);
}
.pcard-body .row {
  height: 14px;
  border-radius: 5px;
  background: var(--bg-3);
}
.pcard-body .row.wide { background: linear-gradient(90deg, var(--orange-soft), transparent); }
.pcard-body .tag { align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: var(--orange-soft); color: var(--orange); font-weight: 700; }

/* ==== Features grid (bento) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.25); }
.feature-card h3 { font-family: var(--f-display); font-size: 26px; line-height: 1; margin: 0 0 10px; }
.feature-card p { font-size: 14px; opacity: 0.92; margin: 0; }
.feature-card.fc-big { grid-column: span 3; min-height: 320px; }
.feature-card.fc-md  { grid-column: span 3; }
.feature-card.fc-sm  { grid-column: span 2; }

.fc-orange { background: linear-gradient(135deg, #ff8000 0%, #ff5c00 100%); }
.fc-blue   { background: linear-gradient(135deg, #126dfb 0%, #0b4fbd 100%); }
.fc-dark   { background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%); }
.fc-pink   { background: linear-gradient(135deg, #ff4a95 0%, #c71a6b 100%); }
.fc-purple { background: linear-gradient(135deg, #6938ef 0%, #3f1db6 100%); }
.fc-green  { background: linear-gradient(135deg, #21bf2b 0%, #0d7a13 100%); }

.feature-card .fc-shape {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 170px; height: 170px;
  border-radius: 50%;
  opacity: 0.18;
  background: #fff;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.feature-card:hover .fc-shape { transform: scale(1.15) translate(-10px, -10px); }

.feature-card .chip-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 12px; font-weight: 700;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.feature-card .fc-placeholder {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  opacity: 0.7;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ==== App section =============================== */
.app-section {
  background: linear-gradient(180deg, #0f0f14 0%, #1a0b1f 100%);
  color: #fff;
  position: relative;
}
.app-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,128,0,0.25), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255,74,149,0.2), transparent 40%);
  pointer-events: none;
}
.app-section .section-head .eyebrow { background: rgba(255,128,0,0.2); color: var(--orange); }
.app-section .section-head .lead { color: rgba(255,255,255,0.7); }

/* --- Sticky scroll app section --- */
.app-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  position: relative;
  align-items: start;
}
.app-phone-sticky {
  position: sticky;
  top: 10vh;
  height: 80vh;
  display: grid;
  place-items: center;
  align-self: start;
  z-index: 1;
}
.app-phone-sticky .stage { width: 100%; max-width: 380px; }
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 10vh;
  padding: 10vh 0;
}

/* phone screen cross-fade */
.screen-slides { position: absolute; inset: 0; }
.screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .6s ease, transform .8s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  padding: 48px 16px 16px;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #fff;
}
.screen-slide.is-active { opacity: 1; transform: scale(1); }

.screen-slide .sp-header { display: flex; gap: 8px; margin-bottom: 16px; opacity: 0.85; }
.screen-slide .sp-chip {
  flex: 1;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.35);
  text-align: center;
}
.screen-slide .sp-main {
  flex: 1;
  border: 1.5px dashed rgba(255,255,255,0.45);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 12px;
}
.screen-slide .sp-main strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.screen-slide .sp-footer { display: flex; gap: 6px; }
.screen-slide .sp-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(255,255,255,0.3);
  text-align: center;
}

.sp-shot{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.screen-slide{padding:0!important}
.screen-slide.theme-quiz{background:linear-gradient(180deg,#ff8000 0%,#c24d00 100%)}
.screen-slide.theme-unlock{background:linear-gradient(180deg,#8cc63f 0%,#3f6b18 100%)}
.screen-slide.theme-gems{background:linear-gradient(180deg,#1c2c60 0%,#0c1330 100%)}
.screen-slide.theme-rank{background:linear-gradient(180deg,#1f5fd0 0%,#0e2a63 100%)}
.screen-slide.theme-medal{background:linear-gradient(180deg,#b4530f 0%,#6d2f06 100%)}
.screen-slide.theme-avatar{background:linear-gradient(180deg,#ff8000 0%,#1f5fd0 100%)}

/* Per-slide gradient themes */
.screen-slide.theme-arena { background: linear-gradient(180deg, #3a86ff 0%, #1d5fd8 100%); }
.screen-slide.theme-mission { background: linear-gradient(180deg, #ff8000 0%, #c24d00 100%); }
.screen-slide.theme-battle { background: linear-gradient(180deg, #ff4a95 0%, #8a1450 100%); }
.screen-slide.theme-reward { background: linear-gradient(180deg, #21bf2b 0%, #0d7a13 100%); }
.screen-slide.theme-profile { background: linear-gradient(180deg, #6938ef 0%, #3a1b94 100%); }

.screen-slide.theme-arena { background-image:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 10px),
  linear-gradient(180deg, #3a86ff 0%, #1d5fd8 100%); }
.screen-slide.theme-mission { background-image:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 10px),
  linear-gradient(180deg, #ff8000 0%, #c24d00 100%); }
.screen-slide.theme-battle { background-image:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 10px),
  linear-gradient(180deg, #ff4a95 0%, #8a1450 100%); }
.screen-slide.theme-reward { background-image:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 10px),
  linear-gradient(180deg, #21bf2b 0%, #0d7a13 100%); }
.screen-slide.theme-profile { background-image:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 10px),
  linear-gradient(180deg, #6938ef 0%, #3a1b94 100%); }

.app-feat-step {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: var(--bg-2);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  transition: border-color .4s, transform .4s, opacity .4s, box-shadow .4s;
  opacity: 0.42;
}
.app-feat-step.is-active {
  opacity: 1;
  border-color: var(--orange);
  transform: scale(1.01);
  box-shadow: 0 30px 80px -30px rgba(255,128,0,0.45);
}
.app-feat-step .step-index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.app-feat-step h4 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  margin: 0 0 16px;
  color: var(--ink);
}
.app-feat-step p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 44ch;
}
.app-feat-step .af-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 20px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  transition: transform .4s;
}
.app-feat-step.is-active .af-icon { transform: rotate(-8deg) scale(1.1); animation: bob 3s ease-in-out infinite; }

/* Dot progress bar on phone side */
.app-dots {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-dots .adot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background .3s, height .3s;
}
.app-dots .adot.is-active { background: var(--orange); height: 22px; border-radius: 3px; }

/* Móvil: el teléfono queda fijo y la tarjeta de debajo se releva */
@media (max-width: 900px) {
  .app-scroll {
    display: block;
    position: relative;
    height: calc(100dvh + 12 * 42dvh);
    gap: 0;
    margin-top: 28px;
  }
  .app-phone-sticky {
    --ph-reserve: 280px;
    position: sticky;
    top: 0;
    height: 100dvh;
    z-index: 1;
    display: grid;
    place-items: center;
    align-content: start;
    padding: 84px 0 196px;
    box-sizing: border-box;
  }
  .app-phone-sticky .stage { width: auto; max-width: none; }
  .app-phone-sticky .orb { display: none; }
  .app-phone-sticky .phone {
    width: auto;
    height: min(52dvh, 420px, calc(100dvh - var(--ph-reserve)));
    aspect-ratio: 290 / 590;
    box-sizing: border-box;
  }

  .app-dots {
    position: relative;
    top: auto; right: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }
  .app-dots .adot { transition: background .3s, width .3s; }
  .app-dots .adot.is-active { height: 6px; width: 20px; border-radius: 3px; }

  /* La lista se convierte en un único hueco anclado al pie de la pantalla */
  .app-features-list {
    position: sticky;
    top: 100dvh;
    height: 0;
    display: block;
    padding: 0;
    gap: 0;
    z-index: 2;
  }
  .app-feat-step {
    position: absolute;
    left: 0; right: 0; bottom: 18px;
    min-height: 0;
    padding: 20px 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .app-feat-step.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 22px 60px -26px rgba(255,128,0,0.5);
  }
  .app-feat-step .af-icon { display: none; }
  .app-feat-step .step-index { margin-bottom: 10px; }
  .app-feat-step h4 { margin-bottom: 8px; }
}


/* ==== FAQ ======================================== */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8px;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  display: grid; place-items: center;
  transition: background .2s, transform .3s, color .2s;
  font-size: 18px;
}
.faq.is-open .faq-q .plus { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq.is-open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 8px 22px; }

/* ==== CTA ======================================== */
.cta-section { padding: 90px 0; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #ff8000 0%, #ff4a95 100%);
  color: #fff;
  text-align: center;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.15), transparent 35%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; margin: 0 0 20px; }
.cta-card p { color: rgba(255,255,255,0.9); max-width: 52ch; margin: 0 auto 30px; }
.cta-card .orb-deco {
  position: absolute;
  width: 124px; height: 124px;
  animation: bob 4s ease-in-out infinite;
  display: grid; place-items: center;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.28));
  pointer-events: none;
}
.cta-card .orb-deco img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cta-card .orb-deco.d1 { top: 10px; left: 40px; }
.cta-card .orb-deco.d2 { bottom: 10px; right: 40px; animation-delay: -2s; }

/* ==== Counter row ================================ */
.counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.counter-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.counter-item .counter { font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px); color: var(--orange); margin-bottom: 6px; line-height: 1; }
.counter-item .label { color: var(--ink-mute); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ==== Footer ===================================== */
.footer { background: var(--ink); color: #fff; padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 36ch; margin: 14px 0 0; }
.footer-brand .nav-brand { color: #fff; }
.footer-brand .brand-mark { background: var(--orange); color: #000; }
.footer-brand .brand-mark::after { border-color: #fff; }
.footer-col h5 { font-family: var(--f-display); font-size: 15px; margin: 0 0 18px; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }

/* ==== Laptop (panel section) =================== */
.laptop-wrap {
  perspective: 2400px;
  display: grid;
  place-items: center;
  padding: 20px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.laptop {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/10;
  transform-style: preserve-3d;
}
.laptop-lid {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a1a22 0%, #0d0d12 100%);
  border: 1px solid #2a2a34;
  border-radius: 14px 14px 4px 4px;
  transform-origin: bottom center;
  transform: rotateX(var(--lid-rot, -95deg));
  transition: transform .15s linear;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
  padding: 1.45%;
  backface-visibility: hidden;
  container-type: inline-size;
}
.laptop-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0a0a12 0%, #181022 100%);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", "Courier New", monospace;
  --u: 0.105cqw;
  font-size: calc(var(--u)*10);
  color: #fff;
}
.lscreen-bar {
  display: flex;
  align-items: center;
  gap: calc(var(--u)*6);
  padding: calc(var(--u)*8) calc(var(--u)*12);
  background: rgba(255,255,255,0.04);
  border-bottom: calc(var(--u)*1) solid rgba(255,255,255,0.06);
  font-size: calc(var(--u)*10);
  color: rgba(255,255,255,0.55);
}
.lscreen-bar .bdot {
  width: calc(var(--u)*8); height: calc(var(--u)*8); border-radius: 50%;
  background: #3a3a44;
}
.lscreen-bar .bdot:nth-child(1) { background: #ff5f57; }
.lscreen-bar .bdot:nth-child(2) { background: #febc2e; }
.lscreen-bar .bdot:nth-child(3) { background: #28c840; }

.lscreen-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
}
.lscreen-side {
  background: rgba(255,255,255,0.02);
  padding: calc(var(--u)*14) calc(var(--u)*10);
  display: flex;
  flex-direction: column;
  gap: calc(var(--u)*6);
  border-right: calc(var(--u)*1) solid rgba(255,255,255,0.05);
}
.ls-item {
  padding: calc(var(--u)*6) calc(var(--u)*8);
  border-radius: calc(var(--u)*6);
  color: rgba(255,255,255,0.6);
  font-size: calc(var(--u)*10);
}
.ls-item.active {
  background: rgba(255,128,0,0.15);
  color: var(--orange);
}
.lscreen-main {
  padding: calc(var(--u)*16);
  display: flex;
  flex-direction: column;
  gap: calc(var(--u)*10);
}
.ls-title {
  font-family: var(--f-display);
  font-size: calc(var(--u)*14);
  margin-bottom: calc(var(--u)*4);
}
.ls-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--u)*8);
  margin-bottom: calc(var(--u)*8);
}
.ls-stat {
  padding: calc(var(--u)*10);
  border-radius: calc(var(--u)*8);
  background: rgba(255,255,255,0.04);
  border: calc(var(--u)*1) solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.ls-stat strong {
  font-family: var(--f-display);
  font-size: calc(var(--u)*18);
  color: var(--orange);
}
.ls-stat span { color: rgba(255,255,255,0.5); font-size: calc(var(--u)*9); }
.ls-row {
  height: calc(var(--u)*8);
  border-radius: calc(var(--u)*4);
  background: rgba(255,255,255,0.06);
}
.ls-chart {
  display: flex;
  gap: calc(var(--u)*4);
  align-items: flex-end;
  height: calc(var(--u)*60);
  margin-top: calc(var(--u)*6);
  padding: calc(var(--u)*6);
  background: rgba(255,255,255,0.02);
  border-radius: calc(var(--u)*6);
}
.ls-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--orange), #c24d00);
  border-radius: calc(var(--u)*3);
  min-height: calc(var(--u)*6);
}
.ls-chart .bar:nth-child(2n) { background: linear-gradient(180deg, var(--blue), #1d5fd8); }

/* Laptop base */
.laptop-base {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1.6%;
  height: 4.6%;
  background: linear-gradient(180deg, #2a2a34 0%, #1a1a22 100%);
  border-radius: 4px 4px 14px 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  transform: translateZ(1px);
}
.laptop-notch {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 6.1%;
  height: 1%;
  background: #0d0d12;
  border-radius: 0 0 6px 6px;
}

.rotating-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  color: var(--orange);
}
.rotating-word { display: inline-block; }
.rw-in  { animation: rw-slide-in .45s cubic-bezier(.16,1,.3,1) forwards; }
.rw-out { animation: rw-slide-out .4s cubic-bezier(.4,0,1,1) forwards; }
@keyframes rw-slide-in {
  from { transform: translateY(-120%) rotate(-6deg) scale(0.85); opacity: 0; }
  to   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
}
@keyframes rw-slide-out {
  from { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  to   { transform: translateY(120%) rotate(4deg) scale(0.85); opacity: 0; }
}
.panel-section { background: var(--bg-2); }
.panel-head { margin-bottom: 20px; }
.laptop-stage {
  position: relative;
  width: 100%;
  padding: 40px 0;
}
.panel-floats { display: contents; }
.panel-float {
  position: absolute;
  z-index: 10;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
  width: 280px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.panel-float:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}
.panel-float:hover strong, .panel-float:hover .d { color: #fff !important; }
.panel-float:hover .num { background: #fff !important; color: var(--orange) !important; }
.panel-float.is-active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 24px 60px -20px rgba(232,123,42,0.5);
}
.panel-float.is-active strong, .panel-float.is-active .d { color: #fff !important; }
.panel-float.is-active .num { background: #fff !important; color: var(--orange) !important; }
.panel-float .num {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  border-radius: 10px;
  font-family: var(--f-display);
  font-size: 14px;
}
.panel-float strong { display: block; font-family: var(--f-display); font-size: 17px; margin-bottom: 2px; }
.panel-float .d { color: var(--ink-soft); font-size: 13px; line-height: 1.35; }
.panel-float.pf-0 { left: -20px; top: 6%; }
.panel-float.pf-1 { right: -20px; top: 16%; }
.panel-float.pf-2 { left: -20px; top: 42%; }
.panel-float.pf-3 { right: -20px; top: 56%; }
.panel-float.pf-4 { left: -20px; bottom: 4%; }


/* Screen views switcher */
.lscreen-views {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.lscreen-view {
  position: absolute;
  inset: 0;
  padding: calc(var(--u)*14);
  display: flex;
  flex-direction: column;
  gap: calc(var(--u)*10);
  opacity: 0;
  transform: translateY(calc(var(--u)*8));
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.lscreen-views[data-view="0"] .lscreen-view:nth-child(1),
.lscreen-views[data-view="1"] .lscreen-view:nth-child(2),
.lscreen-views[data-view="2"] .lscreen-view:nth-child(3),
.lscreen-views[data-view="3"] .lscreen-view:nth-child(4),
.lscreen-views[data-view="4"] .lscreen-view:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* lscreen-main becomes flex so views can fill */
.lscreen-main { padding: 0; }

/* Classes grid */
.ls-classes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--u)*8);
}
.ls-class {
  display: flex;
  align-items: center;
  gap: calc(var(--u)*8);
  padding: calc(var(--u)*8) calc(var(--u)*10);
  border-radius: calc(var(--u)*8);
  background: rgba(255,255,255,0.04);
  border: calc(var(--u)*1) solid rgba(255,255,255,0.08);
}
.ls-class-dot {
  width: calc(var(--u)*10); height: calc(var(--u)*10); border-radius: 50%;
  background: var(--c);
  flex: none;
}
.ls-class strong { display: block; font-size: calc(var(--u)*11); font-family: var(--f-display); }
.ls-class span { font-size: calc(var(--u)*9); color: rgba(255,255,255,0.5); }

/* Subjects */
.ls-subjects {
  display: flex;
  flex-direction: column;
  gap: calc(var(--u)*10);
}
.ls-subject-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(var(--u)*4);
  font-size: calc(var(--u)*11);
}
.ls-subject-head strong { font-family: var(--f-display); }
.ls-subject-head span { color: rgba(255,255,255,0.55); }
.ls-progress {
  height: calc(var(--u)*6);
  border-radius: calc(var(--u)*3);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.ls-progress-fill { height: 100%; border-radius: calc(var(--u)*3); }

/* Goal */
.ls-goal {
  display: flex;
  flex-direction: column;
  gap: calc(var(--u)*14);
}
.ls-goal-big {
  text-align: center;
  padding: calc(var(--u)*14);
  border-radius: calc(var(--u)*10);
  background: linear-gradient(135deg, rgba(232,123,42,0.15), rgba(217,66,145,0.1));
  border: calc(var(--u)*1) solid rgba(232,123,42,0.3);
}
.ls-goal-big strong {
  display: block;
  font-family: var(--f-display);
  font-size: calc(var(--u)*36);
  color: var(--orange);
  line-height: 1;
}
.ls-goal-big span { font-size: calc(var(--u)*10); color: rgba(255,255,255,0.6); }
.ls-goal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: calc(var(--u)*6);
  align-items: end;
}
.ls-goal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--u)*4);
}
.ls-goal-bar {
  width: 100%;
  height: calc(var(--u)*50);
  background: rgba(255,255,255,0.05);
  border-radius: calc(var(--u)*4);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ls-goal-bar div {
  width: 100%;
  background: linear-gradient(180deg, var(--orange), #c24d00);
  border-radius: calc(var(--u)*4);
}
.ls-goal-day span { font-size: calc(var(--u)*8); color: rgba(255,255,255,0.5); }

/* Legend */
.ls-legend {
  display: flex;
  gap: calc(var(--u)*14);
  font-size: calc(var(--u)*9);
  color: rgba(255,255,255,0.6);
}
.ls-legend i {
  display: inline-block;
  width: calc(var(--u)*10); height: calc(var(--u)*10);
  border-radius: calc(var(--u)*2);
  margin-right: calc(var(--u)*4);
  vertical-align: middle;
}

/* ==== Responsive =============================== */
@media (max-width: 900px) {
  .panel-grid { grid-template-columns: 1fr; gap: 40px; }
  /* El portátil queda fijo y las tarjetas se relevan debajo */
  .panel-section {
    --lw-top: 232px;
    --lw-card: 118px;
    --lw-gap: 30px;
    --lw-pad-top: calc(var(--lw-top) + var(--lw-gap));
    --lw-pad-bot: calc(var(--lw-card) + var(--lw-gap) + 14px);
    --lw-h: min(calc((100vw - 36px) / 1.6), calc(100dvh - var(--lw-pad-top) - var(--lw-pad-bot)));
  }
  /* El título se despega a la vez que el portátil (margen compensado abajo) */
  .panel-section .panel-head {
    position: sticky;
    top: 62px;
    z-index: 4;
    margin: 0 0 calc(100dvh - var(--lw-top));
    padding: 6px 0 14px;
    background: var(--bg-2);
  }
  .laptop-stage {
    display: block;
    position: relative;
    padding: 0;
    margin-top: calc(var(--lw-top) - 100dvh);
    height: calc(100dvh + 5 * 46dvh);
  }
  .laptop-stage > .laptop-wrap {
    position: sticky;
    top: 0;
    margin-top: -100dvh;
    height: 100dvh;
    display: grid;
    place-items: center;
    align-content: start;
    padding: var(--lw-pad-top) 0 var(--lw-pad-bot);
    box-sizing: border-box;
    perspective: 1600px;
    z-index: 1;
  }
  .laptop-stage > .laptop-wrap .laptop {
    width: min(100%, calc(var(--lw-h) * 1.6));
    max-width: none;
    aspect-ratio: 16/10;
  }
  .laptop { width: 100%; max-width: none; }
  .panel-floats {
    position: sticky;
    top: 0;
    height: 100dvh;
    display: block;
    z-index: 2;
    pointer-events: none;
  }
  .panel-floats .panel-float {
    position: absolute;
    top: calc(var(--lw-pad-top) + var(--lw-h) + var(--lw-gap));
    left: 0; right: 0; bottom: auto;
    width: auto;
    height: auto;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .panel-floats .panel-float.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hero { padding: 110px 0 0; }
  .hero-scroll { height: 140vh; }
  .section { padding: 70px 0; }
  .phone { width: 240px; }
  .tag-badge.t1 { left: 2%; }
  .tag-badge.t2 { right: 2%; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.fc-big, .feature-card.fc-md, .feature-card.fc-sm { grid-column: span 1; }
  .app-grid { grid-template-columns: 1fr; gap: 24px; }
  .app-features.right .app-feat { flex-direction: row; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-row { grid-template-columns: 1fr; }
}

/* ==== Opiniones ================================== */
.op-scroller{position:relative;margin-top:56px}
.op-rail{display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-padding-left:2px;padding:6px 2px 22px;scrollbar-width:none;-ms-overflow-style:none}
.op-rail::-webkit-scrollbar{display:none}
.op-card{margin:0;flex:0 0 clamp(280px,32%,360px);scroll-snap-align:start;background:#fff;border:1.5px solid var(--line);border-radius:22px;padding:26px 24px 22px;display:flex;flex-direction:column;gap:16px;position:relative;overflow:hidden;transition:transform .3s cubic-bezier(.2,.8,.2,1),box-shadow .3s,border-color .3s}
.op-card::before{content:"";position:absolute;top:-40px;right:-40px;width:120px;height:120px;border-radius:50%;background:var(--orange);opacity:.06;pointer-events:none;transition:opacity .3s}
.op-card:hover{transform:translateY(-5px);border-color:var(--orange);box-shadow:0 22px 48px -20px rgba(255,128,0,.32)}
.op-card:hover::before{opacity:.13}
.op-stars{color:var(--orange);font-size:15px;letter-spacing:3px;line-height:1}
.op-quote{margin:0;font-size:15.5px;line-height:1.7;color:var(--ink-soft);text-wrap:pretty;flex:1}
.op-quote::before{content:"\201C"}
.op-quote::after{content:"\201D"}
.op-author{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid var(--line)}
.op-av{width:42px;height:42px;border-radius:50%;flex-shrink:0;display:grid;place-items:center;font-family:"JetBrains Mono",monospace;font-size:13px;font-weight:600;color:#fff;background:var(--c,var(--orange));letter-spacing:.02em}
.op-meta{display:flex;flex-direction:column;gap:2px;min-width:0}
.op-meta strong{font-size:14.5px;color:var(--ink);font-weight:800;line-height:1.2}
.op-meta span{font-size:12.5px;color:var(--ink-mute);font-weight:500;line-height:1.3}
.op-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:44px;height:44px;border-radius:50%;background:#fff;border:1.5px solid var(--line);color:var(--ink);font-size:24px;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 10px 26px -12px rgba(0,0,0,.22);transition:border-color .2s,color .2s,transform .2s,opacity .25s}
.op-nav:hover{border-color:var(--orange);color:var(--orange);transform:translateY(-50%) scale(1.08)}
.op-nav.prev{left:-14px}
.op-nav.next{right:-14px}
.op-scroller.at-start .op-nav.prev,.op-scroller.at-end .op-nav.next{opacity:0;pointer-events:none}
@media (max-width:900px){.op-scroller{margin-top:40px}.op-rail{gap:16px}.op-card{flex-basis:min(84vw,320px)}.op-nav{display:none}}

/* ==== Portátil en pantallas pequeñas ============ */
@media (max-width: 760px) {
  .laptop-lid { border-radius: 11px 11px 3px 3px; }
  .laptop-screen { border-radius: 5px; }
  .lscreen-body { grid-template-columns: 1fr; }
  .lscreen-side {
    flex-direction: row; align-items: center;
    overflow-x: auto; scrollbar-width: none;
    border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .lscreen-side::-webkit-scrollbar { display: none; }
  .ls-item { flex: none; white-space: nowrap; }
  .ls-classes { grid-template-columns: 1fr 1fr; }
}

/* ==== Teléfono ================================== */
@media (max-width: 600px) {
  .container { width: min(1200px, 100% - 36px); }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .h-1 { font-size: clamp(32px, 10.5vw, 46px); }
  .h-2 { font-size: clamp(30px, 9.5vw, 42px); }

  .hero-scroll { height: 120vh; }
  .hero-copy-sticky { top: 92px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; min-height: 52px; font-size: 15px; }
  .hero-copy .eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-side-label { display: none; }
  .tag-badge { display: none; }
  .phone { width: min(240px, 68vw); }
  .orb-sm { width: 56px; height: 56px; }
  .orb-md { width: 72px; height: 72px; }
  .orb-lg { width: 84px; height: 84px; }

  .marquee-item { font-size: 19px; gap: 10px; }
  .marquee-item .chip { width: 30px; height: 30px; border-radius: 9px; font-size: 14px; }

  .feature-card { padding: 24px 22px; }
  .feature-card.fc-big { min-height: 240px; }
  .feature-card h3 { font-size: 23px; }
  .feature-card::after { width: 120px; height: 120px; }

  .app-feat-step h4 { font-size: clamp(22px, 6.4vw, 28px); }
  .app-feat-step p { font-size: 14.5px; line-height: 1.5; }

  .panel-float { padding: 14px 16px; gap: 12px; grid-template-columns: 40px 1fr; }
  .panel-float .num { width: 32px; height: 32px; font-size: 13px; }
  .panel-float strong { font-size: 16px; }
  .panel-float .d { font-size: 12.5px; }
  .panel-section { --lw-top: 232px; --lw-card: 112px; --lw-gap: 26px; }

  .faq-q { font-size: 15.5px; padding: 18px 4px; gap: 14px; }
  .faq-a { font-size: 14.5px; }

  .cta-card { padding: 36px 24px; }
  .cta-card .orb-deco { display: none; }
  .counter-row { gap: 12px; margin-top: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .op-card { flex-basis: min(86vw, 320px); padding: 22px 20px 20px; }
}

@media (max-width: 400px) {
  .container { width: min(1200px, 100% - 28px); }
  .op-card { flex-basis: 88vw; }
}

/* Pantallas bajas (móvil en horizontal): menos reserva y piezas más pequeñas.
   Va al final para no perder la cascada frente a los bloques de arriba. */
@media (max-width: 900px) and (max-height: 680px) {
  .app-phone-sticky { --ph-reserve: 246px; padding: 78px 0 168px; }
  .app-phone-sticky .phone { height: min(46dvh, 340px, calc(100dvh - var(--ph-reserve))); }
  .app-dots { margin-top: 10px; }
  .app-feat-step { padding: 16px 20px; bottom: 14px; }
  .panel-section { --lw-top: 188px; --lw-card: 104px; --lw-gap: 16px; }
}


/* Capturas reales del panel dentro del portátil */
.lscreen-view { padding: 0; }
.lscreen-view picture { display: contents; }
.lscreen-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  background: #0f1420;
}

/* Pista de interacción sobre el portátil */
.panel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: -22px auto 34px;
  padding: 9px 18px 9px 14px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 20px -12px rgba(17,17,28,.16);
}
.panel-hint-ico { font-size: 16px; line-height: 1; }
@media (max-width: 600px) {
  .panel-hint { margin: -10px auto 26px; font-size: 13.5px; padding: 8px 14px 8px 12px; }
}
/* el cursor debe delatar que la tarjeta se puede pulsar */
.panel-float { cursor: pointer; }
