:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --text:#eaf0ff;
  --muted:#a9b6d3;
  --line:rgba(255,255,255,.12);
  --accent:#6ea8ff;
  --gold:#e6c46b;
  --shadow:0 20px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

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

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(110,168,255,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(230,196,107,.12), transparent 50%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 16px 60px;
}

/* ===== NAV / HEADER ===== */

.nav{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(15,27,51,.75);
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
}

/* Brand row */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

/* LOGO — THIS FIXES YOUR ISSUE */
.logo{
  height:56px;          /* 👈 bigger */
  width:auto;
  flex-shrink:0;
}

/* Brand text */
.brand-text strong{
  display:block;
  font-size:20px;
  line-height:1.1;
}
.brand-text span{
  font-size:13px;
  color:var(--muted);
}

/* Nav pills */
.navlinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  font-weight:600;
}

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

.hero{
  margin-top:22px;
  padding:26px 20px;
  border-radius:calc(var(--radius) + 10px);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

.hero h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
}

.hero p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-size:13px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#5ff0b2;
}

.badge.gold .dot{background:var(--gold)}

/* ===== CTA BUTTONS ===== */

.cta{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.cta a{
  padding:16px;
  text-align:center;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:800;
  font-size:16px;
}

.cta a.primary{
  border-color:rgba(230,196,107,.5);
  box-shadow:0 0 0 1px rgba(230,196,107,.25);
}

/* ===== DESKTOP ENHANCEMENTS ===== */

@media (min-width:900px){
  .nav{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .hero h1{font-size:44px}

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

  .logo{height:64px;} /* desktop bump */
}

/* ===== MOBILE LOGO BOOST ===== */
@media (max-width: 600px) {

  .brand {
    gap: 16px;
  }

  .logo {
    height: 72px;     /* was ~56px */
    width: auto;
  }

  .brand-text strong {
    font-size: 22px;  /* slightly larger brand name */
  }

  .brand-text span {
    font-size: 14px;  /* readable tagline */
  }

}

/* ===== MOBILE HEADER LAYOUT FIX ===== */
@media (max-width: 600px) {

  .brand {
    display: flex;
    flex-direction: row;     /* image on LEFT */
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 8px 12px;
  }

  .logo {
    height: 86px;            /* bigger but not ridiculous */
    width: auto;
    flex-shrink: 0;
  }

  .brand-text {
    text-align: left;
    line-height: 1.2;
  }

  .brand-text strong {
    font-size: 20px;
    font-weight: 700;
  }

  .brand-text span {
    font-size: 13px;
    opacity: 0.85;
  }

}