:root {
  --bg-dark: #000000;
  --bg-darker: #000000;
  --surface: #0a0a0c;
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --text-dark: #555555;
  --primary-blue: #0066ff;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Advanced Radial Background Texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% -20%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(circle at 100% 50%, rgba(0,102,255,0.03) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  z-index: -1;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; outline: none; }

/* Liquid Glass 2.0 Utilities */
.liquid-glass {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.liquid-glass-dark {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.text-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-liquid {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-liquid:hover {
  background: rgba(255, 255, 255, 1);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-blue {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-blue:hover { background: #0052cc; transform: translateY(-1px); }

.btn-dark {
  background: #1a1a1c; color: #fff; border: none; padding: 12px 32px;
  border-radius: 30px; font-size: 15px; font-weight: 500; transition: all 0.3s;
}
.btn-dark:hover { background: #2a2a2d; }

.btn-large { padding: 16px 48px; font-size: 16px; border-radius: 40px; }
.btn-full { width: 100%; margin-top: 24px; }

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  height: 90px; display: flex; align-items: center; justify-content: space-between;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.nav-logo { height: 60px; max-width: 300px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 40px; margin-left: 40px; }
.nav-link { font-size: 13px; color: var(--text-muted); font-weight: 500; transition: color 0.3s; letter-spacing: 0.5px; white-space: nowrap; }
.nav-link:hover { color: var(--text-main); }
.lang-toggle { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.nav-signin { font-size: 14px; font-weight: 500; color: var(--text-main); transition: opacity 0.3s; }
.nav-signin:hover { opacity: 0.7; }

/* Hero */
.hero {
  padding: 200px 24px 80px 24px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-container { margin-bottom: 40px; display: flex; justify-content: center; }
.hero-giant-logo { width: 100%; max-width: 900px; height: auto; filter: brightness(0) invert(1); }
.hero-subtitle {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.6;
  max-width: 800px;
}

/* Infinite Marquee Logos (White & Glowing) */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0 100px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  color: #fff;
  font-size: 32px;
}

.marquee-item img {
  height: 35px;
  /* Make all images pure white and give them a strong glow */
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
  opacity: 0.6;
  transition: all 0.3s ease;
}

.marquee-item .text-logo {
  font-weight: bold;
  opacity: 0.6;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  white-space: nowrap;
}

.marquee-item i {
  opacity: 0.6;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.marquee-item:hover img,
.marquee-item:hover .text-logo,
.marquee-item:hover i {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(255,255,255,1));
  text-shadow: 0 0 18px rgba(255,255,255,1);
  transform: scale(1.05);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* App Showcase */
.app-showcase { max-width: 1300px; margin: 0 auto 150px auto; padding: 0 24px; }
.app-container { border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.app-topbar { height: 64px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: rgba(0,0,0,0.3); }
.app-logo { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--text-muted); }
.app-controls { display: flex; align-items: center; gap: 20px; }
.control-group { display: flex; gap: 12px; }
.app-select { color: var(--text-main); padding: 8px 16px; border-radius: 8px; font-size: 13px; font-family: inherit; outline: none; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.app-select option { background: #000; color: #fff; }

.replay-toolbar { display: flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 30px; }
.toolbar-btn { color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.toolbar-btn:hover { background: rgba(255,255,255,0.15); color: var(--text-main); }
.speed-control { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-muted); margin: 0 16px; text-transform: uppercase; letter-spacing: 1px; }
.liquid-slider { width: 80px; height: 2px; background: rgba(255,255,255,0.2); appearance: none; outline: none; }
.liquid-slider::-webkit-slider-thumb { appearance: none; width: 12px; height: 12px; border-radius: 50%; background: #fff; cursor: pointer; }

.chart-wrapper { display: flex; }
.app-sidebar { width: 70px; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; padding: 24px 0; gap: 32px; }
.sidebar-icon { color: var(--text-dark); font-size: 20px; cursor: pointer; transition: color 0.3s; }
.sidebar-icon:hover, .sidebar-icon.active { color: var(--text-main); }
.tv-chart { flex-grow: 1; position: relative; }

/* AI Terminal Overlay */
.ai-overlay {
  position: absolute; top: 24px; left: 24px; width: 380px;
  background: rgba(5, 5, 8, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px;
  z-index: 20; font-family: var(--font-mono); overflow: hidden; pointer-events: none; 
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255,255,255,0.1);
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ai-header { font-size: 10px; color: #fff; text-transform: uppercase; letter-spacing: 2px; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.5); }
.ai-pulse-container { margin-left: auto; display: flex; align-items: center; gap: 6px; color: #ffffff; font-weight: 600; font-size: 9px; letter-spacing: 1px; }
.ai-pulse { width: 6px; height: 6px; background-color: #ffffff; border-radius: 50%; box-shadow: 0 0 12px #ffffff; animation: pulseFast 1s infinite; }
@keyframes pulseFast { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
.ai-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.01); }
.ai-metric-box { padding: 10px 12px; border-right: 1px solid rgba(255,255,255,0.05); }
.ai-metric-box:last-child { border-right: none; }
.ai-metric-label { font-size: 8px; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ai-metric-value { font-size: 11px; color: #fff; font-weight: bold; }
.ai-log-container { padding: 12px 16px; height: 200px; display: flex; flex-direction: column; justify-content: flex-end; mask-image: linear-gradient(to bottom, transparent 0%, black 20%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%); }
.ai-log { display: flex; flex-direction: column; gap: 6px; }
.ai-log-entry { display: flex; gap: 8px; font-size: 10px; line-height: 1.4; color: #a1a1aa; animation: slideUpFade 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.ai-time { color: #555; font-size: 9px; min-width: 60px; }
.ai-msg { flex-grow: 1; color: #a1a1aa; }
.ai-log-entry.highlight .ai-msg { color: #fff; font-weight: bold; }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Global Section Styles */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.section-header h2 { font-size: 48px; font-weight: 300; margin-bottom: 24px; letter-spacing: -0.03em; }
.section-header p { color: var(--text-muted); font-size: 18px; line-height: 1.6; font-weight: 300; }

/* How It Works Layer */
.how-it-works { max-width: 1100px; margin: 0 auto 150px auto; padding: 0 24px; }
.steps-container { display: flex; flex-direction: column; gap: 40px; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 40px; position: relative; }
.step-item { position: relative; padding-bottom: 20px; }
.step-number { position: absolute; left: -60px; top: -4px; width: 40px; height: 40px; background: #000; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; z-index: 2; box-shadow: 0 0 20px rgba(255,255,255,0.1); }
.step-item h3 { font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.step-item p { color: var(--text-muted); font-size: 16px; line-height: 1.6; max-width: 600px; }

/* Features Grid */
.features-section { max-width: 1300px; margin: 0 auto 150px auto; padding: 0 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.feature-card { padding: 40px; border-radius: 20px; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card i { font-size: 28px; color: #fff; margin-bottom: 24px; }
.feature-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 16px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; font-weight: 300; }

/* Testimonials */
.testimonials-section { max-width: 1300px; margin: 0 auto 150px auto; padding: 0 24px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.testimonial-card { padding: 40px; border-radius: 20px; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); }
.stars { color: #fff; font-size: 14px; margin-bottom: 20px; display: flex; gap: 4px; }
.testimonial-card p { color: var(--text-main); font-size: 16px; line-height: 1.6; font-weight: 300; font-style: italic; margin-bottom: 30px; flex-grow: 1; }
.trader-info { display: flex; flex-direction: column; }
.trader-info strong { font-weight: 600; font-size: 15px; }
.trader-info span { color: var(--text-dark); font-size: 13px; margin-top: 4px; }

/* Pricing Section */
.pricing-section { max-width: 900px; margin: 0 auto 150px auto; padding: 0 24px; }
.pricing-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.pricing-card { background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 40px 30px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.pro { background: #0d0e12; border-color: rgba(255, 255, 255, 0.15); }
.pricing-title { font-size: 18px; font-weight: 500; text-align: center; margin-bottom: 24px; }
.save-badge { background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent); color: #8ab4f8; font-size: 13px; font-weight: 500; text-align: center; padding: 6px 0; margin-bottom: 20px; }
.pricing-price-container { text-align: center; margin-bottom: 8px; }
.price-main { font-size: 64px; font-weight: 600; letter-spacing: -2px; }
.price-mo { font-size: 18px; color: var(--text-muted); }
.price-yearly { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.pricing-action-link { text-align: center; display: block; font-size: 13px; color: var(--text-main); text-decoration: underline; text-decoration-style: dashed; text-decoration-color: #666; margin-bottom: 16px; min-height: 20px; }
.pricing-action-link:hover { text-decoration-color: #fff; }
.pricing-taxes { text-align: center; font-size: 12px; color: var(--text-muted); font-style: italic; margin: 16px 0 32px 0; padding: 0 10px; line-height: 1.5; }
.pricing-features { list-style: none; margin-top: auto; }
.pricing-features li { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; font-size: 14px; color: #fff; }
.feat-icon-check { color: #fff; font-size: 14px; }
.feat-icon-x { color: #555; font-size: 14px; }
.feat-icon-blue { color: var(--primary-blue); font-size: 14px; background: rgba(0, 102, 255, 0.1); padding: 4px; border-radius: 4px; }
.ribbon { position: absolute; top: 24px; left: -32px; background: var(--primary-blue); color: #fff; font-size: 14px; font-weight: 600; padding: 6px 40px; transform: rotate(-45deg); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.pricing-free-block { background: #121212; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 40px; display: flex; align-items: center; justify-content: space-between; }
.free-text h3 { font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.free-text h2 { font-size: 40px; font-weight: 600; letter-spacing: -1px; }
.free-action { text-align: center; }
.free-action span { display: block; color: var(--text-muted); font-size: 12px; margin-top: 12px; }

/* Final CTA */
.final-cta { max-width: 1000px; margin: 0 auto 150px auto; padding: 0 24px; }
.cta-container { padding: 100px 40px; border-radius: 40px; text-align: center; }
.cta-container h2 { font-size: 56px; font-weight: 300; margin-bottom: 24px; letter-spacing: -0.03em; }
.cta-container p { color: var(--text-muted); font-size: 20px; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 100px 24px 60px 24px; }
.footer-links-grid { max-width: 1300px; margin: 0 auto 80px auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 24px; color: var(--text-main); }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 16px; transition: color 0.3s; }
.footer-col a:hover { color: var(--text-main); }
.footer-bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; }
.footer-bottom p { color: var(--text-dark); font-size: 12px; line-height: 1.6; text-align: center; margin-bottom: 32px; }
.footer-meta { display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); font-size: 13px; flex-wrap: wrap; gap: 16px; }
.social-links { display: flex; gap: 24px; font-size: 18px; color: var(--text-muted); }

/* Responsive */
/* ============================================================
   RESPONSIVE
   ============================================================ */

/* El botón hamburguesa solo existe por debajo de 900px */
.nav-burger { display: none; }

/* Enlaces que solo tienen sentido dentro del menú desplegable */
.nav-link-movil { display: none; }

/* El navbar tiene bastante que mostrar cuando hay sesión iniciada (pill
   con correo + botón de salir) además del enlace de Comunidad — a partir
   de acá se le da un respiro antes de que le toque apretarse del todo
   en la franja de tablet. */
@media (max-width: 1300px) {
  .nav-links { gap: 28px; margin-left: 28px; }
  .nav-left, .nav-right { gap: 22px; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card.popular { transform: none; padding: 50px 40px; }
  .nav-links { gap: 24px; margin-left: 24px; }
  .nav-left, .nav-right { gap: 18px; }
  .app-showcase, .how-it-works, .features-section,
  .testimonials-section, .pricing-section, .final-cta { margin-bottom: 90px; }
}

/* ---------- Menú móvil ---------- */
@media (max-width: 900px) {
  .nav-container { position: relative; flex-wrap: nowrap; }

  .nav-burger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 44px; height: 44px; padding: 10px;
    background: transparent; border: 0; cursor: pointer; z-index: 1002;
  }
  .nav-burger span {
    display: block; height: 2px; width: 100%; border-radius: 2px;
    background: #fff; transition: transform .25s ease, opacity .2s ease;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Panel desplegable.
     Se ancla con position:absolute a .nav-container y no con fixed:
     .navbar tiene un transform de entrada, y un ancestro con transform
     rompe el anclaje al viewport de los hijos position:fixed. */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0; margin: 0;
    padding: 8px 18px 20px;
    background: rgba(8, 10, 14, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1001;
    max-height: calc(100vh - 100%); overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav-links .nav-link {
    padding: 16px 4px; font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links .nav-link:last-child { border-bottom: 0; }
  .nav-link-movil { display: block; }
  .nav-link-destacado {
    margin-top: 16px; text-align: center;
    background: var(--accent-blue, #1668ff); color: #fff;
    border-radius: 999px; border-bottom: 0 !important;
    padding: 15px 20px !important; font-weight: 600;
  }

  /* En el menú desplegable ya están estos accesos */
  .nav-right .nav-signin, .nav-right .btn-liquid { display: none; }
  .nav-logo { height: 42px; max-width: 190px; }
}

/* ---------- Móvil ---------- */
@media (max-width: 768px) {
  .pricing-cards-container { grid-template-columns: 1fr; }
  .pricing-free-block { flex-direction: column; text-align: center; gap: 24px; }
  .nav-right { gap: 10px; }
  .app-sidebar { display: none; }
  .ai-overlay { display: none; }

  /* Las tarjetas pedían 350px dentro de un contenedor de 327px y se
     salían del borde. Con 1 columna se ajustan al ancho real. */
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Tipografía fluida: escala con el ancho en vez de saltar por tramos */
  .hero-subtitle { font-size: clamp(15px, 4vw, 18px); }
  .section-header h2 { font-size: clamp(26px, 7vw, 34px); }
  .cta-container h2 { font-size: clamp(26px, 7vw, 34px); }
  .cta-container p { font-size: clamp(15px, 4vw, 18px); margin-bottom: 32px; }
  .price-main { font-size: clamp(38px, 11vw, 50px); }
  .step-item p { font-size: 15px; }

  /* El espaciado de escritorio (150px) deja huecos enormes en móvil */
  .app-showcase, .how-it-works, .features-section,
  .testimonials-section, .pricing-section, .final-cta { margin-bottom: 64px; }
  .section-header { margin-bottom: 36px; }

  /* Contenedores: menos aire lateral para ganar ancho útil */
  .nav-container, .app-showcase, .how-it-works, .features-section,
  .testimonials-section, .pricing-section, .final-cta { padding-left: 18px; padding-right: 18px; }

  /* Botones cómodos para el pulgar */
  .btn-liquid, .btn-dark, .btn-blue { min-height: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-large { width: 100%; justify-content: center; }
  .pricing-card { padding: 32px 22px; }
}

/* ---------- Móvil pequeño ---------- */
@media (max-width: 480px) {
  .footer-links-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .nav-logo { height: 34px; max-width: 150px; }
  .hero-giant-logo { max-width: 100%; }
  .pricing-card { padding: 26px 18px; }
  .step-item { gap: 14px; }
  .footer-bottom { padding-top: 26px; font-size: 12px; }
}

/* Evita que iOS haga zoom al enfocar un campo (pasa si la fuente < 16px).
   Se usa el selector con atributo para ganarle a las reglas por clase
   de los formularios de login y checkout. */
@media (max-width: 768px) {
  input[type="text"], input[type="email"], input[type="password"],
  input[type="number"], input[type="search"], input[type="tel"],
  input[type="date"], select, textarea {
    font-size: 16px;
    min-height: 46px;
  }
  input[type="checkbox"], input[type="radio"] {
    width: 18px; height: 18px; min-height: 18px; flex: none;
  }
  .auth-card, .checkout-card { padding: 26px 20px; }
  .btn-oauth, .auth-submit, .checkout-submit { min-height: 48px; }

  /* Los campos en rejilla no cabían: un elemento de grid tiene
     min-width:auto y el input no puede encogerse por debajo de su
     tamaño intrínseco, así que el formulario se salía de pantalla. */
  .form-row-2 { grid-template-columns: 1fr; gap: 14px; }
  .form-group { min-width: 0; }
  .form-group input, .auth-input, .field {
    width: 100%; min-width: 0; max-width: 100%;
    box-sizing: border-box;
  }
}

/* ============================================================
   SaaS Auth & Checkout Modals
   ============================================================ */
.auth-backdrop[hidden] {
  display: none !important;
}
.auth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  animation: modalScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.auth-close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--text-muted);
  font-size: 24px;
  line-height: 1;
  transition: color 0.2s;
}
.auth-close:hover { color: #fff; }
.auth-head {
  text-align: center;
  margin-bottom: 24px;
}
.auth-logo {
  height: 38px;
  object-fit: contain;
  margin-bottom: 14px;
}
.auth-head h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.auth-head p {
  color: var(--text-muted);
  font-size: 13px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.auth-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.auth-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.form-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
}
.auth-link {
  color: var(--text-muted);
  transition: color 0.2s;
}
.auth-link:hover { color: #fff; }
.auth-divider {
  text-align: center;
  margin: 12px 0;
  position: relative;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.auth-divider span {
  position: relative;
  background: #0d0e12;
  padding: 0 12px;
  font-size: 10px;
  color: var(--text-dark);
  letter-spacing: 1px;
  font-weight: 600;
}
.btn-oauth {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-oauth:hover { background: rgba(255, 255, 255, 0.12); }
.auth-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-highlight {
  color: #0066ff;
  font-weight: 600;
}
.auth-highlight:hover { text-decoration: underline; }

/* Plan Selection Cards */
.plan-selection-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 10px 0;
}
.plan-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.plan-radio-card.active, .plan-radio-card:hover {
  border-color: rgba(0, 102, 255, 0.8);
  background: rgba(0, 102, 255, 0.08);
}
.plan-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.plan-info strong { font-size: 13px; color: #fff; }
.plan-info span { font-size: 11px; color: var(--text-muted); }
.plan-tag {
  background: #0066ff;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

/* Checkout Modal */
.modal-checkout {
  max-width: 480px;
}
.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 153, 129, 0.2);
  color: #089981;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.checkout-summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
  text-align: left;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.summary-line.highlight {
  font-size: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  margin-top: 6px;
}
.text-green { color: #089981; }
.summary-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.pay-tab {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.pay-tab.active, .pay-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon-wrap input { width: 100%; }
.pay-brand-icon {
  position: absolute;
  right: 14px;
  font-size: 24px;
  color: #fff;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.paypal-info-box, .crypto-info-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  margin-bottom: 14px;
}
.paypal-lg-icon { font-size: 40px; color: #0079C1; margin-bottom: 10px; }
.crypto-lg-icon { font-size: 40px; color: #F7931A; margin-bottom: 10px; }
.checkout-trust-icons {
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  color: var(--text-dark);
  margin-top: 14px;
}
.modal-processing-box {
  text-align: center;
  padding: 40px 30px;
}
.proc-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #0066ff;
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
  margin: 0 auto 20px auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* User Profile Navbar Pill */
.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px 4px 6px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.avatar-circle-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #8b6508 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-email-tag {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-logout {
  color: var(--text-muted);
  font-size: 14px;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s;
}
.btn-logout:hover { color: #f23645; }

/* ============================================================
   3D Glassmorphic Verification Card (Nivel Dios)
   ============================================================ */
.modal-checkout-godtier {
  max-width: 500px;
  padding: 30px 28px;
}
.card-3d-wrapper {
  perspective: 1000px;
  margin: 0 auto 16px auto;
  max-width: 340px;
  width: 100%;
}
.card-3d-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  height: auto;
  min-height: 185px;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease-out, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, rgba(13, 14, 18, 0.95) 0%, rgba(20, 25, 40, 0.95) 100%);
}
.card-3d-inner:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 102, 255, 0.4);
}
.card-3d-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(41, 98, 255, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.card-3d-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  pointer-events: none;
}
.card-3d-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-chip-icon {
  font-size: 26px;
  color: #d4af37;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.card-wifi-icon {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transform: rotate(90deg);
}
.card-badge-label {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.card-3d-body {
  position: relative;
  z-index: 2;
  margin: 10px 0;
}
.card-number-display {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.card-3d-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.card-holder-col, .card-exp-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card-sub-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.card-val-display {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
.card-brand-logo {
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}/* ============================================================
   SINTÉTICOS REPLAY - ESTILO INSTITUCIONAL (Casi idéntico a app.html)
   ============================================================ */

/* Ocultar cualquier enlace o logo por defecto de TradingView en Lightweight Charts */
#tvchart a,
#tvchart a[href*="tradingview"],
#tvchart .tv-lightweight-charts-logo,
#tvchart canvas + div a,
#tvchart div > a,
#tvchart table + a {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Desactivar totalmente animaciones de scroll (página fija y 100% visible) */
.pop-up-nav,
.pop-up-hero,
.pop-up-hero-delay,
.pop-up-hero-delay-2,
.pop-up-scroll,
[class*="pop-up"] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  animation: none !important;
  transition: none !important;
}

/* Asegurar el scroll vertical normal de la página de aterrizaje */
body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  user-select: auto !important;
}

/* Ajuste universal para subpáginas debajo de la barra fija de navegación (evita solapamiento) */
.subpage-main,
.dash-layout,
main.how-it-works,
.legal-container,
.support-container {
  padding-top: 120px !important;
}

/* Component: Verification Card (Tarjeta de Membresía / Verificación Pro) */
.verification-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  perspective: 1000px;
}

.verification-card {
  position: relative;
  width: 320px;
  height: 190px;
  border-radius: 20px;
  padding: 22px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(41, 98, 255, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  animation: cardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

@keyframes cardEntrance {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.verification-card:hover {
  transform: translateY(-6px) rotateX(4deg) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(41, 98, 255, 0.45);
}

.verification-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(12, 14, 18, 0.55) 100%);
  border-radius: 20px;
  z-index: 1;
}

.verification-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.verification-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

.verification-card-number {
  font-size: 17px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.verification-card-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

/* Ajustes de integración para la vista previa del terminal en index.html */
.app-showcase .app-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #12151b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.app-showcase .topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  background: #12151b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-showcase .topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-showcase .user-avatar-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.app-showcase .avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #232731;
  color: #8f96a3;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333846;
}

.app-showcase .avatar-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #f23645;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  height: 14px;
  min-width: 14px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.app-showcase .brand-logo-img {
  height: 22px;
  width: auto;
}

.app-showcase .tf-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}

.app-showcase .tf {
  min-width: 28px;
  height: 24px;
  padding: 0 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #787b86;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-showcase .tf:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.app-showcase .tf.active {
  color: #ffffff;
  background: #2962ff;
}

.app-showcase .topbar-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 6px;
}

.app-showcase .topbar-spacer {
  flex: 1;
}

.app-showcase .tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 8px;
  font-size: 11px;
  color: #8b949e;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-showcase .tool:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.app-showcase .tool .ico {
  font-size: 11px;
}

.app-showcase .workspace {
  display: flex;
  position: relative;
  background: #0c0e12;
  height: 520px;
}

.app-showcase .toolrail {
  width: 42px;
  background: #12151b;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 6px;
}

.app-showcase .toolrail-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: transparent;
  border: none;
  color: #787b86;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-showcase .toolrail-btn:hover,
.app-showcase .toolrail-btn.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.app-showcase .chart-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0c0e12;
  position: relative;
}

.app-showcase .chart-toolbar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
}

.app-showcase .chart-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-showcase .chart-title-sym {
  font-weight: 700;
  color: #ffffff;
}

.app-showcase .chart-title-meta {
  color: #787b86;
  font-family: 'JetBrains Mono', monospace;
}

.app-showcase .ohlc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #787b86;
  margin-left: auto;
}

.app-showcase .ohlc strong {
  color: #ffffff;
}

.app-showcase .chart-area {
  flex: 1;
  position: relative;
  min-height: 420px;
}

.app-showcase .chart-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.app-showcase .pane-main {
  width: 100%;
  height: 100%;
  position: relative;
}

.app-showcase .replaybar {
  height: 44px;
  background: #12151b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
  font-size: 11px;
  color: #787b86;
}

.app-showcase .transport {
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-showcase .transport-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #8b949e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.app-showcase .transport-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.app-showcase .transport-btn.primary {
  background: #2962ff;
  border-color: #2962ff;
  color: #ffffff;
}

.app-showcase .replay-clock {
  font-family: 'JetBrains Mono', monospace;
  color: #ffffff;
}

.app-showcase .scrubber {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.app-showcase .scrubber-fill {
  height: 100%;
  background: #2962ff;
  border-radius: 2px;
}

.app-showcase .speed-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-showcase .speed-control input[type="range"] {
  width: 70px;
  accent-color: #2962ff;
}

