/* =========================
   Build Systems LA
   base.css (single source of truth)
   Dark / structured / diagnostic (Google-page style colors)
   No JS required
   ========================= */

:root{
  /* Backgrounds (closer to the Google/Maps page look) */
  --bg-0:#06070b;
  --bg-1:#0b1120;
  --bg-2:#101a2e;

  /* Text */
  --text:#f2f6ff;
  --sub:rgba(232,238,249,.78);

  /* Lines / surfaces */
  --line:rgba(255,255,255,.09);
  --surface:rgba(255,255,255,.05);
  --surface-2:rgba(255,255,255,.07);

  /* Accents (pulled toward your right screenshot) */
  --blue:#0a6ebe;
  --blue-2:#2f93ff;
  --blue-soft:rgba(10,110,190,.16);

  --green:#1fd38a;
  --green-soft:rgba(31,211,138,.14);

  --red:#ff4d3a;
  --red-2:#ff2f2f;
  --red-soft:rgba(255,77,58,.14);

  --amber:#ffb020;
  --amber-2:#ffd27a;

  --radius:14px;
  --radius-22:22px;
  --wrap:1120px;

  --shadow:0 18px 52px rgba(0,0,0,.55);
  --shadow-soft:0 12px 32px rgba(0,0,0,.42);
}

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

body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:#000000;
}


a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{margin:0;color:var(--sub);line-height:1.65}

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 18px;
}

.hr{height:1px;background:var(--line);opacity:.65;margin:26px 0}

.section{padding:30px 0}
.section h2{
  margin:0 0 10px;
  font-size:30px;
  font-weight:1000;
  letter-spacing:-.6px;
}
.section .lead{
  margin:0 0 18px;
  max-width: 78ch;
  font-weight:650;
}

/* =========================
   Header (sticky)
   ========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background: rgba(6,7,11,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 240px;
}

.mark{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  font-weight:1000;
  letter-spacing:.4px;
}

.brand .name{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand strong{font-size:14px;letter-spacing:.2px}
.brand span{font-size:12px;color:rgba(232,238,249,.68)}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  font-size:13px;
  font-weight:900;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color: rgba(232,238,249,.82);
}

.nav a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.09);
  color: rgba(242,246,255,.94);
}

.nav a[aria-current="page"]{
  background: rgba(10,110,190,.20);
  border-color: rgba(10,110,190,.28);
  color: rgba(242,246,255,.96);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 240px;
  justify-content:flex-end;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  color: rgba(242,246,255,.90);
  font-weight:950;
  font-size:13px;
  white-space:nowrap;
}

.pill:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.pill.primary{
  background: rgba(10,110,190,.18);
  border-color: rgba(10,110,190,.28);
}

.pill.call{
  background: rgba(255,77,58,.14);
  border-color: rgba(255,77,58,.26);
  color: rgba(242,246,255,.96);
}

@media (max-width: 900px){
  .header-row{flex-direction:column; align-items:stretch}
  .brand,.header-cta{min-width:unset}
  .header-cta{justify-content:space-between}
  .nav{justify-content:flex-start}
}

/* =========================
   Hero
   ========================= */

.hero{padding:44px 0 26px}

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

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  color: rgba(242,246,255,.88);
  font-weight:900;
  font-size:12px;
}

.hero h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:1.02;
  letter-spacing:-1.2px;
  font-weight:1000;
}

.hero .subhead{
  font-size:16px;
  font-weight:650;
  color: rgba(232,238,249,.78);
  max-width: 70ch;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:1000;
  font-size:14px;
}

.btn.primary{
  background: linear-gradient(180deg, var(--red), var(--red-2));
  color:#0b1220;
}
.btn.primary:hover{filter:brightness(.98)}

.btn.ghost{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: rgba(242,246,255,.92);
}
.btn.ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

/* system bar */
.system-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.step{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  font-weight:950;
  font-size:13px;
  color: rgba(242,246,255,.88);
}
.step b{color: rgba(242,246,255,.96)}
.step em{font-style:normal;color: rgba(232,238,249,.62)}

/* right hero diagnostic card */
.panel{
  border-radius: var(--radius-22);
  border:1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(10,110,190,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(6,7,11,.92));
  box-shadow: var(--shadow);
  padding:18px;
}

.panel h3{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.2px;
  font-weight:1000;
  color: rgba(242,246,255,.94);
}

.panel ul{
  margin:0;
  padding-left:18px;
  color: rgba(232,238,249,.74);
  line-height:1.6;
  font-size:14px;
  font-weight:650;
}
.panel li{margin:8px 0}

.panel strong{color: rgba(242,246,255,.94)}

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

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px;letter-spacing:-.9px}
}

/* =========================
   Diagnostic cards / grids
   ========================= */

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(700px 320px at 18% 0%, rgba(10,110,190,.07), transparent 62%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow-soft);
  padding:16px;
}

.card h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:1000;
  color: rgba(242,246,255,.94);
}

.card p{font-size:14px;font-weight:650}

.card ul{
  margin:10px 0 0;
  padding-left:18px;
  color: rgba(232,238,249,.74);
  line-height:1.6;
  font-size:14px;
  font-weight:650;
}

/* card headers (Default vs Designed) */
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
  font-weight:950;
  font-size:12px;
  color: rgba(242,246,255,.90);
  margin-bottom:10px;
}

.tag.red{
  border-color: rgba(255,77,58,.30);
  background: var(--red-soft);
}
.tag.green{
  border-color: rgba(31,211,138,.30);
  background: var(--green-soft);
}

/* =========================
   Footer
   ========================= */

.site-footer{
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(6,7,11,.70);
}

.footer-row{
  padding:18px 0 26px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-links a{
  font-size:13px;
  font-weight:900;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(232,238,249,.84);
}
.footer-links a:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
