/* ============================================================
   RESET / BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: fixed;
  top: 0;
  left: 16px;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.15s;
}
.skip-link:focus { transform: translateY(0); }

html { scrollbar-gutter: stable; }

/* ============================================================
   CSS VARIABLES / CUSTOM PROPERTIES
   ============================================================ */

:root {
  --accent: #1c1c1e;
  --accent-hover: #333333;
  --bg-top: #E8E8E8;
  --bg-mid: #F5F5F5;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --nav-safe-space: 50px;
  --nav-top-blur-height: 84px;
}

/* ============================================================
   CSS VARIABLES / CUSTOM PROPERTIES — PER-APP THEMES
   ============================================================ */

body.app-sketchover {
  --accent: #14B8A6;
  --accent-hover: #0D9488;
  --bg-top: #CCF2EE;
  --bg-mid: #EBF9F8;
}

body.app-syndic {
  --accent: #F54048;
  --accent-hover: #D93540;
  --bg-top: #F2CCCC;
  --bg-mid: #F9EBEB;
}

body.app-global {
  --bg-top: #C5E0F4;
  --bg-mid: #E5F3FB;
}

body.app-burstshoot {
  --accent: #FF6A00;
  --accent-hover: #E55D00;
  --bg-top: #F5C87A;
  --bg-mid: #FDE8C0;
}

/* ============================================================
   TYPOGRAPHY / BASE BODY
   ============================================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  background: radial-gradient(ellipse 110% 85% at 50% -2%, var(--bg-top) 0%, var(--bg-mid) 18%, #ffffff 40%);
  background-attachment: scroll;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-top-blur-height);
  z-index: 89;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 36%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 36%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  margin: 0 auto;
  width: 900px;
  max-width: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);

}

/* Placeholder optimization to avoid layout shift */
#nav-placeholder {
  min-height: 72px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: rgba(35, 35, 35, 0.78);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s ease;
  z-index: 95;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.32);
}

.home-page {
  --nav-safe-space: 120px;
}

.inner-page {
  --nav-safe-space: 80px;
}

.nav-logo {
  display: flex; 
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img,
.nav-logo svg { height: 60px; width: auto; display: block; margin-top: 18px; transition: transform 0.2s ease; }

.nav-logo:hover img,
.nav-logo:hover svg { transform: scale(1.06); }


.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a,
.nav-dropdown-trigger {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  position: relative;
}

.nav-dropdown-trigger {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  padding: 0;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover { opacity: 1; }

.nav-links > li > a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger.active::after { width: 100%; }

.nav-links a.active,
.nav-dropdown-trigger.active { opacity: 1; font-weight: 700; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 10;
  min-width: 148px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.68;
  text-align: center;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #F5F5F5;
  font-weight: 400;
  opacity: 0.9;
}

.nav-links a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.30);
  outline-offset: 5px;
  border-radius: 6px;
}

.nav-cta {
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.nav-cta strong { font-weight: 700; }
.nav-cta:hover { background: #333333; opacity: 0.85; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--nav-safe-space);
  padding-bottom: 50px;
}

.hero.hero--syndic {
  --accent: #F54048;
  --accent-hover: #D93540;
}

.hero-compact { padding-bottom: 0; --nav-safe-space: 80px; }

.hero-app { padding-bottom: 72px; }

/* Clase para páginas con texto pero sin icono (unifica support, apps, making) */
.hero-minimal {
  min-height: 0;
  padding-bottom: 20px;
  --nav-safe-space: 80px;
}

.hero-minimal .hero-content {
  padding-top: 12px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 0;
}

.hero-app-icon {
  width: 160px;
  height: 160px;
  margin-bottom: 32px;
  will-change: transform;
  transform: translateZ(0);
  animation: floating 3s ease-in-out infinite;
}

.hero-headline {
  font-size: 65px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text);
}

.hw-black { font-weight: 900; }

.hw-red {
  font-weight: 900;
  color: var(--text);
}

.hero-sub {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.75;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.btn-mobile { display: none; }
.btn-desktop { display: inline-block; }
.app-preview-mobile-img { display: none; }

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 226px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  --cta-shift: 8px;

}

.hero-cta-icon {
  position: static;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.hero-cta .btn-desktop,
.hero-cta .btn-mobile {
  transition: transform 0.3s ease;
}

.hero-cta-arrow {
  position: absolute;
  right: 22px;
  display: block; /* Hacemos la flecha visible */
  width: 20px;
  height: 24px;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(100%); /* La posicionamos fuera del botón a la derecha */
  transition: transform 0.3s cubic-bezier(0.2, 1.4, 0.36, 1), opacity 0.2s ease;
}

.hero-cta-arrow::before,
.hero-cta-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
}

.hero-cta-arrow::before {
  width: 20px;
  height: 3.25px;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
}

.hero-cta-arrow::after {
  width: 11px;
  height: 11px;
  border-top: 3.25px solid currentColor;
  border-right: 3.25px solid currentColor;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.hero-cta strong { font-weight: 700; }

.hero-cta:hover,
.hero-cta:focus-visible {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  padding-right: 56px; /* Ajustado para que el texto no choque con la nueva posición */
}

.hero-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 75%, transparent);
  outline-offset: 5px;
}

.hero-cta:hover .hero-cta-icon,
.hero-cta:focus-visible .hero-cta-icon {
  transform: translateX(calc(var(--cta-shift) * -1));
}

.hero-cta:hover .btn-desktop,
.hero-cta:focus-visible .btn-desktop,
.hero-cta:hover .btn-mobile,
.hero-cta:focus-visible .btn-mobile {
  transform: translateX(calc(var(--cta-shift) * -1));
}

.hero-cta:hover .hero-cta-arrow,
.hero-cta:focus-visible .hero-cta-arrow {
  opacity: 1; /* Hacemos la flecha visible */
  transform: translateX(0); /* La deslizamos a su posición final */
}

@keyframes cta-arrow-kick {
  0% { transform: translateX(115%) scale(0.92); }
  58% { transform: translateX(-4px) scale(1.06); }
  100% { transform: translateX(0) scale(1); }
}

/* ============================================================
   APP PREVIEW / DO WINDOW
   ============================================================ */

.app-preview {
  display: flex;
  justify-content: center;
  padding: 72px 20px 0;
}

.app-preview-inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 1100px;
  max-width: calc(100% - 40px);
}

.app-preview-left {
  grid-area: 1 / 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 360px;
  padding: 0 0 0 72px;
}

.app-preview-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.app-preview-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin: 0 0 16px;
}

.app-preview-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.75;
  margin: 0 0 32px;
}

.app-preview-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  color: #1a1a1a;
  text-decoration: none;
  padding: 17px 38px;
  border-radius: 980px;
  font-size: 19px;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s ease;
}
.app-preview-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

.app-preview-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Scribbles Overlay (SketchOver app preview) ── */
.app-preview-canvas {
  grid-area: 1 / 1;
  position: relative;
}

.scribbles-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scribble {
  position: absolute;
  clip-path: inset(0 100% 0 0);
}

.scribble--hello  { width: 14%; top: 28%; right: 25%; }
.scribble--idea   { width: 9.2%; bottom: 33%; left: 47%; }
.scribble--coffee { width: 10.5%; bottom: 33%; right: 10%; }
.scribble--pencil { width: 6.8%; top: 27%; right: 20.5%; }

@keyframes scribble-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

.app-preview-canvas.is-visible .scribble {
  animation: scribble-reveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--i) * 0.55s) both;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

.features {
  width: 100%;
  padding: 40px 40px 80px;
}

.features-header {
  text-align: center;
  margin-bottom: 100px;
}

.features-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.features-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img,
.feature-icon svg {
  width: 48px;
  height: 48px;
  transition: filter 0.3s ease;
}

.feature:hover .feature-icon {
  animation: bounce 0.5s ease;
}

.feature:hover .feature-icon img,
.feature:hover .feature-icon svg {
  filter: brightness(0);
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-14px); }
  60%  { transform: translateY(-6px); }
  80%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.feature-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.feature-text strong { font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
  padding: 100px 0 110px;
}

.footer-socials { display: flex; gap: 14px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.social-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  transition: filter 0.2s ease;
}

.social-btn:hover { transform: scale(1.05); opacity: 0.6; }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-pencil { width: 28px; height: auto; margin-bottom: 4px; }
.footer-name { font-size: 15px; font-weight: 400; color: var(--text); }
.footer-name strong { font-weight: 700; }
.footer-tagline { font-size: 15px; font-weight: 400; color: var(--text); opacity: 0.6; }
.footer-tagline strong { font-weight: 700; opacity: 1; }

.footer-coffee {
  padding-top: 24px;
}
.footer-contact { margin-top: 8px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #14B8A6 0%, #0D9488 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
}
.footer-contact a:hover { background: var(--text); transform: scale(1.06); }

/* ── Navigation — Mobile Menu ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 100;
  background: rgba(227, 227, 227, 0.78);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 24px 24px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 34px;
}

.mobile-menu-links a {
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  opacity: 0.6;
}

.mobile-menu-links a:hover { opacity: 1; }

.mobile-menu-links a.active {
  opacity: 1;
  font-weight: 700;
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: min(320px, 100%);
}

.mobile-menu-group-toggle {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.58;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
}

.mobile-menu-group-toggle::after {
  content: ' +';
}

.mobile-menu-group.is-open .mobile-menu-group-toggle::after {
  content: ' -';
}

.mobile-menu-sublinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-group.is-open .mobile-menu-sublinks {
  max-height: 220px;
  opacity: 1;
}

.mobile-menu-sublinks a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.58;
  text-transform: uppercase;
}

.mobile-menu-sublinks a.active {
  font-weight: 700;
  opacity: 0.82;
}

.mobile-menu-links > li:last-child {
  margin-bottom: 12px;
}

.mobile-menu-cta {
  display: block;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 18px;
  border-radius: 980px;
  font-size: 18px;
  font-weight: 400;
  margin-top: 28px;
}

.mobile-menu-cta strong { font-weight: 700; }

/* ============================================================
   SYNDIC PAGE
   ============================================================ */

.app-preview-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(-20%);
}

.syndic-preview-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
}

.syndic-preview-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: syndic-shine 7s infinite;
  pointer-events: none;
}

@keyframes syndic-shine {
  0% { left: -150%; }
  15% { left: 150%; }
  100% { left: 150%; }
}

.syndic-preview-img {
  width: 100%;
  height: auto;
}

.syndic-coming {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: default;
  opacity: 0.8;
}

.syndic-coming:hover { color: var(--accent); }

/* ── Syndic — Devices / New Layout ── */
.syndic-devices-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 0;
}

.toolbar-static {
  max-width: 750px;
  width: 100%;
  height: auto;
  display: block;
}

.syndic-slider {
  width: 100%;
  max-width: 860px;
}

.syndic-devices-img {
  width: 100%;
  height: auto;
  display: none;
}

.syndic-devices-img.is-active {
  display: block;
  animation: syndicFadeIn 0.7s ease forwards;
}

@keyframes syndicFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.syndic-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.syndic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 30%, transparent);
}

.syndic-dot.active {
  background: var(--accent);
}

.syndic-intro {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 680px;
  margin: 0 auto;
}

.syndic-intro-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.syndic-intro-body {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text);
}

.syndic-demo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 60px;
}

.syndic-demo-img {
  width: 100%;
  max-width: 960px;
  height: auto;
}

.syndic-demo-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.syndic-demo-caption a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.syndic-demo-caption a:hover { text-decoration: underline; }

/* ============================================================
   TYPOGRAPHY — BELIEFS / ESSAY / LONG-FORM TEXT
   ============================================================ */

.beliefs-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 120px;
}

.beliefs-essay { max-width: 660px; width: 100%; }

/* Blog post pages: todo alineado a la izquierda */
.is-blog .beliefs-headline { text-align: left; }
.post-headline { text-align: left !important; }

.beliefs-headline {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 48px;
}

.beliefs-headline--hero {
  text-align: left;
  margin-bottom: 40px;
}

.beliefs-headline em { font-style: normal; color: var(--accent); }
.app-global .beliefs-headline em { color: #F5A623; }
.beliefs-headline .subtitle { font-size: 0.45em; font-weight: 600; letter-spacing: 0; opacity: 0.4; display: block; margin-top: 6px; }
.support-headline { text-align: center; }

/* ============================================================
   SUPPORT PAGE
   ============================================================ */

.support-hub {
  width: 100%;
  padding: 32px 20px 120px;
}

.support-hub-inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.support-search {
  max-width: 520px;
  margin: 0 auto 36px;
}

.support-search-label {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
}

.support-search-input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 14px;
  background: #f9f9f9;
  color: var(--text);
  font: inherit;
  font-size: 18px;
  padding: 0 18px;
  outline: none;
}

.support-search-input:focus {
  background: #fff;
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
}

.support-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-app-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 14px;
  background: #f9f9f9;
  overflow: hidden;
}

.support-app-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.support-app-card.is-filtered-out {
  display: none;
}

.support-app-main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
}

.support-app-icon {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.support-app-copy {
  min-width: 0;
}

.support-app-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.45);
}

.support-app-copy h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.05;
  color: var(--text);
}

.support-app-copy p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.support-app-actions {
  display: flex;
  gap: 8px;
  padding: 0 24px 24px 118px;
}

.support-app-actions a,
.support-page-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 980px;
  background: #fff;
  border: 1px solid rgba(26,26,26,0.09);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 15px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.support-app-actions a:hover,
.support-page-actions a:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
  transform: translateY(-1px);
}

.support-empty {
  display: none;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
}

.support-empty.is-visible {
  display: block;
}

.support-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 44px;
}

.support-detail-page {
  padding-top: 72px;
}

.privacy-page {
  padding-top: 72px;
}

.privacy-panel {
  border-top: 1px solid rgba(26,26,26,0.1);
  padding-top: 34px;
}

.privacy-panel h2 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.05;
  color: var(--text);
}

.privacy-panel h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

.privacy-panel p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.70);
}

.privacy-panel a {
  color: var(--text);
  font-weight: 700;
}

.beliefs-lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}

.beliefs-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 24px;
}

.beliefs-body strong { font-weight: 700; opacity: 1; color: var(--text); }

.beliefs-essay blockquote {
  border-left: 3px solid rgba(26,26,26,0.18);
  margin: 28px 0 28px 22px;
  padding: 4px 70px 4px 30px;
  opacity: 1;
}

.beliefs-essay blockquote p {
  margin-top: 0;
  margin-bottom: 0;
}

.beliefs-signature {
  margin-top: 56px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.5;
  border-top: 1px solid rgba(26,26,26,0.12);
  padding-top: 28px;
}

.beliefs-signature a { color: var(--text); text-decoration: none; font-weight: 600; }

/* ── Support — FAQ Accordion ── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 14px;
}

.faq-item.is-open {
  background: #fff;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 75%, transparent);
  outline-offset: -4px;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(26,26,26,0.12);
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.is-open .faq-icon {
  background: var(--text);
  border-color: var(--text);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #fff;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer-inner p {
  padding: 0 24px 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.82;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 660px;
  width: 100%;
}

.blog-empty { color: var(--text-muted); font-size: 16px; padding: 80px 0; text-align: center; grid-column: 1 / -1; }

.blog-empty-img {
  width: 140px;
  height: auto;
  opacity: 0.7;
  margin: 0 auto 24px;
  display: block;
  animation: floating 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.blog-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: 18px;
  overflow: hidden;
  background: #f9f9f9;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ebebeb;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-img--empty { background: #ebebeb; }

.blog-card-body { padding: 14px 14px 18px; }

.blog-card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

/* ── Blog — Post Detail ── */
.post-hero-img {
  margin-bottom: 32px;
  border-radius: 1px;
  overflow: hidden;
}

.post-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.post-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  margin-bottom: 10px;
}

.post-date-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.post-body {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.post-body h2, .post-body h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 32px 0 12px;
  color: var(--text);
}

.post-body h2 { font-size: 24px; }
.post-body h3 { font-size: 20px; }

.post-body p { margin-bottom: 20px; opacity: 0.85; }

.post-body strong { opacity: 1; color: var(--text); }

.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.post-body li { margin-bottom: 8px; }

.post-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.post-body a:hover { color: #CA504D; text-decoration: underline; }

.post-body img {
  width: 900px;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  margin: 10px auto;
}

.post-body blockquote {
  border-left: 3px solid rgba(26,26,26,0.18);
  margin: 28px 0 28px 22px;
  padding: 4px 50px 4px 10px;
  opacity: 1;
}

.post-body blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0.85;
}

.post-lang-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-hover);
  margin-bottom: 8px;
}

.post-link-section {
  margin: 40px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0,0,0,0.13);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.post-link-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(0,0,0,0.04);
  padding: 5px 11px 5px 9px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
.post-link-item::before { content: '↗'; font-size: 10px; opacity: 0.6; }
.post-link-item:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
}
/* ============================================================
   APPS PAGE
   ============================================================ */

.apps-page {
  padding: 48px 70px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.apps-page + .footer { margin-top: 120px; }

/* ── Work Page ── */
.work-page {
  padding: 48px 24px 80px;
  max-width: 768px;
  margin: 0 auto;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 32px;
}

.work-item { display: block; }

.work-item-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.work-item-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover .work-item-img { transform: scale(1.04); }

.work-item-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 2px 0;
}

.work-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.work-item-buy {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}

.work-item-buy:hover { opacity: 1; }

.work-cta {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 0 24px 64px;
}

.work-cta .apps-section-divider {
  width: 100%;
  margin: 0 0 12px;
}

.work-cta-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
}

.work-cta-link:hover { color: #F5A623; }

.apps-section {
  margin-bottom: 72px;
}

.apps-section-header {
  margin-bottom: 14px;
}

.apps-section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.apps-section-count {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.apps-section-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 36px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  flex-shrink: 0;
}

.app-item:hover .app-item-icon {
  animation: bounce 0.5s ease;
}

.app-item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.app-item-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.app-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.app-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 60px;
  padding: 0 10px;
  line-height: 2.5;
  border-radius: 40px;
  margin-top: 6px;
  text-decoration: none;
  cursor: default;
  text-align: center;
}

.app-badge--free {
  background: #E4F0E8;
  color: #1a6b2a;
}

.app-badge--soon {
  background: #ebebeb;
  color: var(--text-muted);
}



/* ============================================================
   HERO SLIDER — HOME DOTS & SLIDE TRANSITIONS
   ============================================================ */

.home-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 34px 0 0;
}

.home-dots .syndic-dot { cursor: pointer; background: rgba(0,0,0,0.18); }
.home-dots .syndic-dot.active { background: #1a1a1a; }
.home-dots .syndic-dot:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
  border-radius: 50%;
}

.hero-slide { display: none; }
.hero-slide.is-active {
  display: flex;
  animation: heroSlideIn 1.6s ease forwards;
}

@keyframes heroSlideIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   SPOTLIGHT CARDS
   ============================================================ */

.app-spotlight {
  padding: 40px 64px;
}

.spotlight-wrap {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.spotlight-media {
  flex: 0 0 70%;
  overflow: hidden;
  align-self: stretch;
  padding: 40px 0 0 20px;
}

.spotlight-media-img {
  width: 135%;
  height: auto;
  display: block;
  border-radius: 0 12px 0 0;
}

.spotlight-card-media .spotlight-text {
  flex: 1;
  padding: 56px 48px 96px 72px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  background: #FAF8F2;
}

.spotlight-card-media .spotlight-icon-wrap {
  margin-right: auto;
  margin-left: -10px;
}

.spotlight-card-media .spotlight-pill {
  margin-top: 8px;
}

.spotlight-card:not(.spotlight-card-media) .spotlight-pill {
  margin-top: 8px;
}

.spotlight-demo-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-demo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.spotlight-card {
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  background: #ECF9F8;
  background-image: radial-gradient(ellipse 70% 60% at 18% 15%, rgba(255,255,255,.55), transparent 68%);
  
}

.spotlight-card.spotlight-card-media {
  background: #FAF8F2;
}

.spotlight-card.spotlight-card-games {
  background: #2C1F10;
  padding: 0;
  overflow: hidden;
  min-height: 560px;
}

.spotlight-card-games .spotlight-media {
  padding: 0;
  overflow: hidden;
}

.spotlight-card-games .spotlight-text {
  padding: 110px 64px 64px 56px;
}

.spotlight-card.spotlight-card-games h2 {
  color: #FF6A00;
}

.spotlight-card.spotlight-card-games .spotlight-tagline,
.spotlight-card.spotlight-card-games .spotlight-tagline strong {
  color: #f0f0f0;
}

.spotlight-label--games {
  color: #bbb;
}

.spotlight-label--games {
  background: transparent;
  color: #FF6A00;
}

.spotlight-pill-burstshoot {
  background: #FF6A00;
  color: #fff;
}

.spotlight-pill-burstshoot:hover {
  background: #E55D00;
}

.spotlight-media-img--games {
  width: 100%;
  height: auto;
  display: block;
  padding-left: 30px;
  padding-top: 60px;
}

.spotlight-card-games .spotlight-media {
  overflow: hidden;
  padding: 0;
}

.spotlight-card.spotlight-card-media {
  padding: 0;
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.spotlight-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: center;
}

.spotlight-inner-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 0;
}

.spotlight-inner--games {
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
}

.spotlight-inner--games .spotlight-media { order: -1; }
.spotlight-inner--games .spotlight-text  { order: 1; }

.hero-badge {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.spotlight-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 20px;
}

.spotlight-icon-wrap {
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  margin-left: -5px;
  border-radius: 24px;
  overflow: hidden;
}

.spotlight-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.spotlight-tagline {
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.spotlight-pill {
  display: inline-block;
  padding: 14px 44px;
  background: rgba(255, 255, 255, 0.72);
  color: #1a1a1a;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
  transition: background .15s, box-shadow .15s, transform .15s;
}
.spotlight-pill:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

[data-theme="app-sketchover"] .hero-cta { background: #14B8A6; }
[data-theme="app-burstshoot"] .hero-cta { background: #FF6A00; }
[data-theme="app-burstshoot"] .hero-cta:hover { background: #E55D00; }
[data-theme="app-sketchover"] .hero-cta:hover,
[data-theme="app-sketchover"] .hero-cta:focus-visible { background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%); }

.spotlight-card:not(.spotlight-card-media) .do-titlebar { background: #1a1a1a; }

/* ── App Preview — Do Window Component ── */
.do-window {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.do-toolbar-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.do-toolbar-pill {
  background: transparent;
  display: inline-flex;
  align-items: center;
}

.do-toolbar-pill img {
  width: 100%;
  max-width: 520px;
  height: auto;
  transform: scale(1.2);
  transform-origin: top center;
  display: block;
}

.do-chrome {
  border-radius: 12px;
  overflow: hidden;
  
}

.do-titlebar {
  background: var(--accent);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.do-traffic { display: flex; gap: 6px; }

.do-traffic span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.do-traffic .red    { background: #ff5f57; }
.do-traffic .yellow { background: #febc2e; }
.do-traffic .green  { background: #28c840; }

.do-titlebar-label {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-right: 52px;
}

.do-canvas { background: #ffffff; }

.do-tips {
  padding: 8px 22px;
  display: flex;
  flex-direction: column;
}

.do-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 9px;
  margin: 0 -9px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 7px;
  transition: background 120ms ease-out;
  cursor: default;
}
.do-tip:last-child { border-bottom: none; }
.do-tip:hover { background: rgba(0,0,0,0.04); }

.do-tip-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.do-tip:nth-child(1) .do-tip-num { background: #7C5CBF; }
.do-tip:nth-child(2) .do-tip-num { background: #1a1a1a; }
.do-tip:nth-child(3) .do-tip-num { background: #14B8A6; }
.do-tip:nth-child(4) .do-tip-num { background: #FEBC2E; }
.do-tip:nth-child(5) .do-tip-num { background: #F54048; }
.do-tip:nth-child(6) .do-tip-num { background: #3B82F6; }

/* Showcase variant — large centered do-window */
.do-window-showcase {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.do-window-showcase .do-chrome {
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

.do-window-showcase .do-titlebar {
  padding: 16px 20px;
  background: #1a1a1a;
}

.do-window-showcase .do-titlebar-label {
  font-size: 16px;
  font-weight: 600;
}

.do-window-showcase .do-tips {
  padding: 24px 28px;
}

.do-window-showcase .do-tip {
  padding: 18px 12px;
  margin: 0 -12px;
  gap: 16px;
}

.do-window-showcase .do-tip-num {
  width: 48px;
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.do-window-showcase .do-tip-num-wide {
  padding: 0 7px;
  letter-spacing: -0.5px;
}

.do-window-showcase .do-tip-num-esc {
  padding: 0 7px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.do-window-showcase .do-tip-body strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.do-window-showcase .do-tip-body span {
  font-size: 14px;
  line-height: 1.5;
}

.do-tip-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.do-tip-body span {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.45;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* ── Games card responsive — igual que Syndic/Sketch Over a partir de 1350px ── */
@media (max-width: 1350px) {
  .spotlight-card.spotlight-card-games { padding: 40px 32px 0; }
  .spotlight-inner--games {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .spotlight-inner--games .spotlight-media { order: 0; }
  .spotlight-inner--games .spotlight-text  { order: 0; }
  .spotlight-card-games .spotlight-media {
    width: 100%;
    overflow: hidden;
    padding: 0;
  }
  .spotlight-media-img--games {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
  }
  .spotlight-card-games .spotlight-text {
    padding: 0;
    text-align: center;
  }
  .spotlight-card-games .spotlight-icon-wrap { margin: 0 auto 20px; }
}

/* ── Breakpoint: max-width 1024px (iPad landscape / small desktop) ── */
@media (max-width: 1024px) {
  :root { --nav-safe-space: 184px; }
  .home-page { --nav-safe-space: 80px; }
  .inner-page { --nav-safe-space: 70px; }
  .apps-page { padding: 22px 24px 60px; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 10px; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

}

/* ── Breakpoint: 901px–1200px (iPad Pro / mid-range) ── */
@media (min-width: 901px) and (max-width: 1200px) {
  .spotlight-inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
  }
  .do-toolbar-wrap { display: flex; }
  .do-toolbar-pill img { width: 660px; }
  .spotlight-card { padding: 48px 52px; }
  .spotlight-media { flex: 0 0 55%; overflow: hidden; }
  .spotlight-media-img { object-position: center center; }
  .spotlight-card-media .spotlight-text { padding: 48px; }
}

/* ── Breakpoint: 601px–900px (iPad mini / large phone landscape) ── */
@media (min-width: 601px) and (max-width: 900px) {
  :root { --nav-safe-space: 80px; }
  .hero { padding-bottom: 80px; }
  .hero-content { padding-top: 0; }
  .hero-app-icon { width: 120px; height: 120px; }
  .hero-headline { font-size: 52px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 18px; margin-top: 16px; }
  .hero-ctas { margin-top: 32px; gap: 14px; }
  .hero-cta { font-size: 16px; padding: 14px 24px; }
  .hero-cta-icon { width: 22px; height: 22px; }
  .app-preview-inner { display: flex; justify-content: center; }
  .app-preview-left { display: none; }
  .app-preview-right { transform: translateX(0); width: 100%; }
  .app-preview-mobile-img { display: none; }
  .features { padding: 80px 60px; }
  .features-grid { max-width: 480px; }

  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .spotlight-card { padding: 40px 32px; }
  .spotlight-card.spotlight-card-games { padding: 0; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 32px; }
  .spotlight-inner--games { display: flex; flex-direction: column; gap: 32px; }
  .spotlight-card-games .spotlight-text { padding: 32px; text-align: center; }
  .spotlight-card-games .spotlight-icon-wrap { margin: 0 auto 20px; }
  .spotlight-media-img--games { width: 95% !important; max-height: 420px !important; object-fit: contain !important; padding-left: 0 !important; padding-top: 0 !important; display: block !important; margin: 0 auto !important; }
  .spotlight-text { text-align: center; }
  .spotlight-icon-wrap { margin: 0 auto 24px; }
  .do-toolbar-wrap { display: flex; margin-top: 8px; margin-bottom: 32px; }
  .do-toolbar-pill img { width: 680px; }
  .do-window { max-width: 680px; width: 100%; margin: 0 auto; }

  .app-spotlight { padding: 24px 16px; }
  .spotlight-card.spotlight-card-media { padding: 0; }
  .spotlight-inner-reverse { flex-direction: column; align-items: stretch; gap: 0; }
  .spotlight-media { flex: none; width: 100%; order: 2; overflow: hidden; padding: 32px 0 0 32px; }
  .spotlight-media-img { width: 115%; height: auto; object-fit: unset; margin-top: 0; border-radius: 12px 0 0 0; }
  .spotlight-card-media .spotlight-text { padding: 40px 40px 32px; text-align: center; align-items: center; order: 1; }
  .spotlight-card-media .spotlight-icon-wrap { margin: 0 auto 24px; }
  .spotlight-card-media .spotlight-pill { margin-top: 16px; }
}

/* ── Breakpoint: max-width 600px (iPhone portrait) ── */
@media (max-width: 600px) {
  :root { --nav-safe-space: 80px; --nav-top-blur-height: 104px; }
  .home-page { --nav-safe-space: 75px; }
  .inner-page { --nav-safe-space: 60px; }
  .hero { padding-bottom: 48px; }
  .hero-app-icon { margin-top: 0; }
  .hero-content { justify-content: flex-start; padding: 0 24px 48px; }
  .hero-sub { margin-top: 16px; }
  .hero-ctas { margin-top: 28px; }
  nav {
    width: calc(100% - 32px);
    margin-top: 20px;
    padding: 10px 16px;
  }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 38px 24px 0; }
  .hero-headline { font-size: 44px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 18px; }
  .features { padding: 56px 24px 80px; }
  .features-grid { grid-template-columns: 1fr; gap: 62px; }
  .apps-grid { grid-template-columns: 1fr; }
  .app-item-icon { width: 80px; height: 80px; }
  .beliefs-page { padding: 48px 20px 80px; }
  .beliefs-headline { font-size: 36px; letter-spacing: -1px; margin-bottom: 32px; text-align: center; }
  .is-blog .beliefs-headline { text-align: left; }
  .support-headline { margin-top: 24px; }
  .beliefs-lead { font-size: 18px; }
  .beliefs-body { font-size: 16px; }
  .support-hub { padding: 48px 20px 80px; }
  .support-app-grid { grid-template-columns: 1fr; }
  .support-search { margin-bottom: 24px; }
  .support-search-input { height: 50px; font-size: 16px; }
  .support-app-main { padding: 20px; gap: 14px; }
  .support-app-icon { width: 64px; height: 64px; }
  .support-app-copy h2 { font-size: 23px; }
  .support-app-actions { padding: 0 20px 20px 98px; flex-wrap: wrap; }
  .support-search-label,
  .support-search-input { text-align: center; }
  .support-page-actions { justify-content: center; margin-bottom: 32px; }
  .support-detail-page,
  .privacy-page { padding-top: 48px; }
  .privacy-panel h2 { font-size: 30px; }
  .privacy-panel h3 { font-size: 18px; }
  .privacy-panel p { font-size: 16px; }
  .faq-question { padding: 18px; font-size: 16px; }
  .faq-answer-inner p { padding: 0 18px 18px; font-size: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero-img img { height: 240px; }

  .spotlight-card { padding: 32px 24px; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 28px; }
  .spotlight-text { text-align: center; }
  .spotlight-text h2 { font-size: 28px; }
  .spotlight-icon-wrap { width: 88px; height: 88px; margin: 0 auto 20px; }

  .app-spotlight { padding: 16px 12px; }
  .spotlight-card.spotlight-card-media { padding: 0; }
  .spotlight-inner-reverse { flex-direction: column; align-items: stretch; gap: 0; }
  .spotlight-media { flex: none; width: 100%; order: 2; overflow: hidden; padding: 28px 0 0 24px; }
  .spotlight-media-img { width: 120%; height: auto; object-fit: unset; margin-top: 0; border-radius: 10px 0 0 0; }
  .spotlight-card-media .spotlight-text { padding: 32px 24px 24px; text-align: center; align-items: center; order: 1; }
  .spotlight-card-media .spotlight-icon-wrap { margin: 0 auto 20px; }
  .spotlight-card-media .spotlight-pill { margin-top: 12px; }
  .do-window { width: 100%; overflow: hidden; }
  .do-toolbar-wrap { display: flex; justify-content: center; margin-top: 8px; margin-bottom: 32px; overflow: hidden; }
  .do-toolbar-pill { width: 100%; }
  .do-toolbar-pill img { width: 100%; height: auto; max-width: 100%; transform: none; }
  .burstshoot-devices-img { max-width: 85% !important; }

  /* hero: un solo botón */
  .btn-mobile { display: inline-block; }
  .btn-desktop { display: none; }
  .hero-ctas { justify-content: center; }

  /* app preview: imagen plana mobile */
  .app-preview-inner { display: flex; justify-content: center; }
  .app-preview-left { display: none; }
  .app-preview-right { transform: translateX(0); width: 100%; }
  .app-preview-mobile-img { display: none; }

}
