/* ===== Brand Tokens (AI + Jeep / Off-road) ===== */
:root{
  --brand-bg: #070A0F;         /* deep night */
  --brand-surface: #0E1420;    /* panels */
  --brand-text: #EAF2FF;
  --brand-muted: #A7B3C7;
  --brand-accent: #7CFF00;     /* neon trail green */
  --brand-accent-2: #35B8FF;   /* AI blue */
  --brand-warning: #FFB020;
  --brand-border: rgba(255,255,255,0.08);
}

/* Background + typography */
body{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(53,184,255,0.18), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(124,255,0,0.12), transparent 50%),
              linear-gradient(180deg, var(--brand-bg), #05070B);
}

/* Make logo area handle a wide image nicely */
.md-header__button.md-logo img {
  height: 54px;        /* adjust 44–60 if you want */
  width: auto;
}

/* Optional: slightly reduce title spacing */
.md-header__title {
  margin-left: 0.25rem;
}

/* Top header bar */
.md-header{
  background: rgba(7,10,15,0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
}

/* Tabs bar */
.md-tabs{
  background: rgba(7,10,15,0.65) !important;
  border-bottom: 1px solid var(--brand-border);
}

/* Links */
a, .md-typeset a{
  color: var(--brand-accent-2);
}
a:hover, .md-typeset a:hover{
  color: var(--brand-accent);
}

/* Content surface (cards look) */
.md-content__inner{
  padding-top: 1.2rem;
}
.md-typeset hr{
  border-color: var(--brand-border);
}

/* Custom "hero" block */
.hero{
  margin: 0.5rem 0 1.5rem;
  padding: 1.2rem 1.2rem;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(53,184,255,0.14), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(124,255,0,0.12), transparent 55%),
    linear-gradient(180deg, rgba(14,20,32,0.92), rgba(10,14,22,0.92));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero h1{
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.2px;
  font-weight: 800;
}
.hero p{
  margin: 0.4rem 0 0.8rem;
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.badges{
  display:flex;
  gap: .5rem;
  flex-wrap:wrap;
  margin: .6rem 0 1rem;
}
.badge{
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  padding: .28rem .65rem;
  background: rgba(255,255,255,0.03);
  color: var(--brand-text);
  font-size: .85rem;
}
.badge b{ color: var(--brand-accent); font-weight: 700; }

/* CTA buttons */
.cta-row{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
  margin-top: .6rem;
}
.cta{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.55rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--brand-border);
  background: rgba(255,255,255,0.03);
  color: var(--brand-text) !important;
  text-decoration:none !important;
  font-weight: 650;
}
.cta.primary{
  background: linear-gradient(90deg, rgba(53,184,255,0.22), rgba(124,255,0,0.18));
  border-color: rgba(124,255,0,0.22);
}
.cta:hover{
  transform: translateY(-1px);
  border-color: rgba(124,255,0,0.28);
}

/* Feature grid cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 1rem;
}
.card{
  grid-column: span 6;
  padding: 1rem;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.card h3{
  margin: 0 0 .4rem;
}
.card p{
  margin: 0;
  color: var(--brand-muted);
}
@media (max-width: 900px){
  .card{ grid-column: span 12; }
}

.lang-switch {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 12px 0 18px 0;
}

.lang-btn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

.lang-btn:hover {
  border-color: rgba(255,255,255,0.35);
}

.lang-switch{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  margin: 6px 0 18px 0;
}

.lang-pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  text-decoration:none;
  font-weight: 600;
  font-size: 0.85rem;
}

.lang-pill:hover{
  border-color: rgba(255,255,255,.35);
  background: rgba(0,0,0,.32);
}