/* Lexos site — shared theme. Dark, matches the Lexos Hub palette. */
:root{
  --bg:#0e1014; --surface:#161a22; --surface2:#1d222c; --line:rgba(255,255,255,.09);
  --text:#e9edf3; --muted:#9aa6b8; --gold:#f4c430; --blue:#6aa9ff; --purple:#9b8cff; --green:#3ecf8e;
  --maxw:860px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--text);
  font:16px/1.65 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 22px}

/* header / nav */
.nav{position:sticky; top:0; z-index:10; backdrop-filter:saturate(150%) blur(8px);
  background:rgba(14,16,20,.78); border-bottom:1px solid var(--line)}
.nav .wrap{display:flex; align-items:center; gap:22px; height:58px}
.brand{font-weight:800; font-size:18px; letter-spacing:.2px; color:var(--text)}
.brand:hover{text-decoration:none}
.brand .dot{color:var(--gold)}
.nav .links{margin-left:auto; display:flex; gap:20px}
.nav .links a{color:var(--muted); font-weight:600; font-size:14.5px}
.nav .links a:hover{color:var(--text); text-decoration:none}

/* hero */
.hero{padding:64px 0 26px}
.hero h1{font-size:40px; line-height:1.12; margin:0 0 14px; letter-spacing:-.5px}
.hero p.lede{font-size:19px; color:var(--muted); margin:0; max-width:60ch}
.eyebrow{text-transform:uppercase; letter-spacing:1.6px; font-size:12px; font-weight:800; color:var(--gold); margin:0 0 14px}

/* sections */
section{padding:30px 0}
h2{font-size:24px; margin:0 0 16px; letter-spacing:-.2px}
h3{font-size:17px; margin:26px 0 8px}
.muted{color:var(--muted)}
.lead{font-size:18px; color:var(--muted)}

/* cards / app grid */
.grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px}
.card{display:block; background:var(--surface); border:1px solid var(--line); border-radius:16px;
  padding:20px; transition:border-color .18s ease, transform .18s ease}
.card:hover{border-color:rgba(244,196,48,.45); transform:translateY(-2px); text-decoration:none}
.card h3{margin:0 0 6px; color:var(--text); font-size:18px}
.card p{margin:0; color:var(--muted); font-size:14.5px}
.pill{display:inline-block; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.6px;
  padding:3px 9px; border-radius:999px; background:rgba(62,207,142,.16); color:var(--green); margin-left:8px; vertical-align:middle}
.pill.soon{background:rgba(139,147,163,.18); color:var(--muted)}

/* prose (privacy / long docs) */
.prose{max-width:72ch}
.prose h2{font-size:21px; margin-top:34px}
.prose ul{padding-left:20px}
.prose li{margin:6px 0}
.callout{background:var(--surface); border:1px solid var(--line); border-left:3px solid var(--gold);
  border-radius:10px; padding:14px 16px; margin:18px 0; color:var(--text)}
.updated{color:var(--muted); font-size:14px}

/* faq */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line); padding:4px 0}
.faq summary{cursor:pointer; font-weight:700; padding:14px 2px; list-style:none; position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; position:absolute; right:4px; color:var(--muted); font-weight:400; font-size:20px; transition:transform .2s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq .a{padding:0 2px 16px; color:var(--muted)}

/* contact button */
.btn{display:inline-block; background:var(--gold); color:#0e1014; font-weight:800; padding:11px 20px;
  border-radius:11px; margin-top:6px}
.btn:hover{text-decoration:none; filter:brightness(1.05)}

/* footer */
footer{border-top:1px solid var(--line); margin-top:50px; padding:30px 0 50px; color:var(--muted); font-size:14px}
footer .wrap{display:flex; flex-wrap:wrap; gap:8px 22px; align-items:center}
footer a{color:var(--muted)}
footer a:hover{color:var(--text)}
footer .sep{margin-left:auto}

/* accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, summary:focus-visible, .card:focus-visible{
  outline:2px solid var(--gold); outline-offset:3px; border-radius:8px}
:focus:not(:focus-visible){outline:none}

/* utilities (replaces inline styles) */
.static{cursor:default}
.static:hover{border-color:var(--line); transform:none}
.mt-l{margin-top:24px}
.mt-m{margin-top:16px}

/* CTA row + secondary button */
.cta{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:8px}
.btn.ghost{background:transparent; color:var(--text); border:1px solid var(--line)}
.btn.ghost:hover{border-color:var(--gold); filter:none}

/* product screenshots */
.shots{display:flex; gap:16px; overflow-x:auto; padding:6px 2px 14px; scroll-snap-type:x mandatory}
.shot{flex:0 0 auto; width:200px; scroll-snap-align:start}
.shot img{width:100%; height:auto; border-radius:22px; border:1px solid var(--line);
  background:var(--surface); display:block; box-shadow:0 10px 30px rgba(0,0,0,.35)}
.shot figcaption{color:var(--muted); font-size:13px; margin-top:8px; text-align:center}

@media(max-width:600px){
  .hero h1{font-size:31px}
  .hero{padding:44px 0 20px}
  .shot{width:160px}
}
