/* OmniStock — Layout Styles (Nav, Hero, Sections) */

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 42px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(15, 23, 42, 0.97);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--sky);
}

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

.nav-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: var(--sky-dim) !important;
}

.nav-cta:active {
  transform: scale(0.97);
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
  padding: 170px 56px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -120px;
  left: 40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 580px;
  position: relative;
}

.hero-microstats {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-400);
  margin-top: -12px;
  opacity: 0.8;
}

.hero-right {
  position: relative;
}

/* =====================
   STATS BAR
===================== */
.stats-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
}

/* stats-grid removed */

.stat-cell {
  padding: 28px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-cell:last-child {
  border-right: none;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 96px 56px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sky);
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  max-width: 600px;
}



.section-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-fiscal {
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* =====================
   BENTO GRID
===================== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  overflow: hidden;
}

.bc-7 {
  grid-column: span 7;
}

.bc-5 {
  grid-column: span 5;
}

.bc-4 {
  grid-column: span 4;
}

.bc-4a {
  grid-column: span 4;
}

.bc-8 {
  grid-column: span 8;
}

.bc-6 {
  grid-column: span 6;
}

/* =====================
   INDUSTRIES GRID
===================== */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

/* =====================
   FOOTER
===================== */
footer {
  padding: 40px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-brand span {
  color: var(--sky);
}

.footer-meta {
  font-size: 12px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* =====================
   ROADMAP SECTION
===================== */
section#roadmap {
  background: #F8FAFC !important;
  padding-top: 80px;
  padding-bottom: 80px;
}

section#roadmap .section-headline {
  font-size: clamp(40px, 4.8vw, 64px);
  color: #0F172A !important;
}

section#roadmap .section-label {
  color: #0284C7 !important;
}

section#roadmap .rm-title {
  color: #1E293B !important;
}

section#roadmap .rm-next .rm-title {
  color: #94A3B8 !important;
}

section#roadmap .rm-badge {
  color: #0284C7 !important;
}

section#roadmap .rm-next .rm-badge {
  color: #94A3B8 !important;
}

section#roadmap .rm-line {
  background: #CBD5E1 !important;
}

/* =====================
   COMING BANNER
===================== */
.coming-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  flex-wrap: wrap;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #1E293B;
}

.coming-banner::before {
  content: '';
  position: absolute;
  inset: -6px -10px;
  background: var(--amber);
  transform: skewY(-1deg);
  z-index: -1;
}

.coming-banner__dot,
.coming-banner__text,
.coming-banner__cta {
  position: relative;
  z-index: 1;
  transform: none;
  display: inline-flex;
  align-items: center;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 128px 32px 64px;
  }

  .hero-right {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section {
    padding: 64px 32px;
  }

  nav {
    padding: 16px 28px;
  }

  .nav-links {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .stats-bar {
    border: none;
  }

  .stat-cell {
    padding: 28px 32px;
  }

  .bc-7,
  .bc-5,
  .bc-4,
  .bc-4a,
  .bc-8,
  .bc-6 {
    grid-column: span 12;
  }
}

#prueba .section-label,
#prueba .section-headline {
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .coming-banner { padding: 8px 16px; font-size: 12px; gap: 6px; }

  nav { top: 36px; padding: 12px 20px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 130px 24px 48px;
    gap: 32px;
    align-items: start;
  }

  .hero-right {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-headline {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
  }

  .hero-subline { font-size: 15px; }

  .hero-actions { flex-direction: column; }

  .hero-actions a,
  .hero-actions button { width: 100%; justify-content: center; }

  .bento { gap: 10px; }

  .bc-7, .bc-5, .bc-6, .bc-4, .bc-4a, .bc-8 {
    grid-column: span 12 !important;
  }

  .section { padding: 48px 20px; }

  .section-headline {
    font-size: clamp(26px, 7vw, 36px);
    letter-spacing: -1px;
  }

  section#roadmap .section-headline {
    font-size: clamp(24px, 6.5vw, 32px) !important;
    letter-spacing: -0.5px;
  }

  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

  .stat-big {
    font-size: 28px !important;
    letter-spacing: -1px;
  }

  .mockup-card {
    padding: 20px;
  }

  .mini-kpi-val {
    font-size: 16px;
  }

  .roadmap-track {
    max-width: 100%;
    overflow: hidden;
  }

  .rm-step {
    padding-right: 12px;
    word-break: break-word;
  }

  .rm-title {
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .rm-badge {
    font-size: 10px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
}

