:root{
  /* GetOverX-ish palette */
  --gox-sky: #d9ecf8;
  --gox-sky2:#eaf6ff;
  --gox-blue:#0b6fae;
  --gox-blue2:#0a5f96;
  --gox-cyan:#14a6e8;
  --gox-yellow:#f6c445;

  --ink:#081a2b;
  --muted:#4b657c;

  --bg:#06101b;
  --bg2:#071a2b;
  --card: rgba(7, 24, 44, .72);
  --line: rgba(255,255,255,.10);
  --text:#eaf0ff;
  --text-muted: rgba(234,240,255,.74);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);

  /* Dark hero with GetOverX cyan/blue glow + yellow accent */
  background:
    radial-gradient(1100px 650px at 18% 12%, rgba(246,196,69,.18), transparent 60%),
    radial-gradient(950px 600px at 82% 18%, rgba(20,166,232,.22), transparent 55%),
    radial-gradient(900px 560px at 55% 70%, rgba(11,111,174,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Top bar matching GetOverX */
.topbar{
  position:sticky;top:0;z-index:10;
  background: linear-gradient(180deg, var(--gox-sky2), var(--gox-sky));
  border-bottom: 1px solid rgba(8,26,43,.10);
}

.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:var(--ink);
}

.brand-logo{
  height:44px;
  width:auto;
  border-radius:10px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 0 0 1px rgba(8,26,43,.10);
  padding:6px;
}

.brand-title{font-weight:900;letter-spacing:.2px}
.brand-subtitle{font-size:12px;color:rgba(8,26,43,.60);margin-top:2px}

.nav{display:flex;gap:14px;align-items:center}
.nav-link{
  color:rgba(8,26,43,.72);
  text-decoration:none;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:700;
}
.nav-link:hover{
  color:var(--ink);
  border-color: rgba(8,26,43,.12);
  background: rgba(255,255,255,.55);
}

/* Hero */
.hero{padding:44px 0 24px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:18px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--text-muted);
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.6px;
}

.about{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-top:10px;
}

.about-logo{
  flex:0 0 auto;
}

.navajo-logo{
  /* "tamaño real": no forzamos width/height */
  height:auto;
  width:auto;

  /* Solo para que no reviente en móviles */
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 18px 40px rgba(0,0,0,.25);
}

.lead{
  margin:0;
  color:var(--text-muted);
  font-size:16px;
  line-height:1.65;
  max-width:62ch;
}

/* CTA buttons */
.cta{display:flex;gap:12px;margin:18px 0 16px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:12px;
  text-decoration:none;font-weight:900;
  border:1px solid rgba(255,255,255,.14);
}

.btn-primary{
  background: linear-gradient(180deg, var(--gox-yellow), #ffd36b);
  color:#081a2b;
  border-color: rgba(246,196,69,.35);
}
.btn-primary:hover{filter:brightness(1.03)}

.btn-ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:10px;
}
.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:14px;
}
.card-title{font-weight:900;margin-bottom:6px}
.card-text{color:var(--text-muted);font-size:13px;line-height:1.55}

/* Panel */
.panel{
  background: rgba(9, 26, 53, .70);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  overflow:hidden;
}
.panel-title{
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.12);
  font-weight:900;
}
.code{
  margin:0;
  padding:14px;
  overflow:auto;
  font-size:13px;
  line-height:1.45;
  background: rgba(0,0,0,.26);
}
.panel-foot{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.12);
  color:var(--text-muted);
  font-size:13px;
}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

/* Footer */
.footer{padding:28px 0 10px}
.muted{color:var(--text-muted);font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns:1fr}
  h1{font-size:36px}
  .nav{display:none}
  .about{flex-direction:column}
  .navajo-logo{max-width: 180px}
}
/* Right column: stack panels */
.hero-right{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* Disclaimer box (right side) */
.disclaimer-box{
  background: rgba(9, 26, 53, .55);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:14px;
}

.disclaimer-title{
  font-weight:900;
  margin-bottom:8px;
}

.disclaimer-text{
  color: var(--text-muted);
  font-size:12.5px;
  line-height:1.55;
}
/* Avoid Bootstrap .card conflicts */
.gox-card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  min-height: 150px;
}

.gox-card-title{
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.gox-card-text{
  color: var(--text-muted, rgba(255,255,255,.78));
  line-height: 1.45;
  font-size: 13px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.navbar-toggler { border: 1px solid rgba(255,255,255,.25); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1) grayscale(1); }

/* Fix Bootstrap collapse: make it push content down instead of overlaying */
.topbar{
  position: sticky;     /* or remove if you don't want sticky */
  top: 0;
  z-index: 1000;
  overflow: visible;    /* IMPORTANT: allow navbar to expand */
}

/* If any ancestor forces clipping, this helps */
.topbar .container,
.topbar .navbar{
  overflow: visible;
}

/* Mobile dropdown panel styling (so links don't "disappear") */
#goxNavbar{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 10px;
  backdrop-filter: blur(10px);
}

/* Make nav links readable inside the opened panel */
#goxNavbar .nav-link{
  padding: 10px 12px;
  border-radius: 10px;
  display: block;
}

