/* Divergent AI – Landing v0
   Minimal, fast, and clean. No external dependencies. */

:root{
  --bg: #070a1c;
  --bg2:#0b0f30;
  --card:#0e143f;
  --text:#f4f6ff;
  --muted:#c6c9dd;
  --line: rgba(255,255,255,.12);
  --accent:#6df0ff;
  --accent2:#ffb86b;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --r: 16px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 10%, rgba(109,240,255,.12), transparent 60%),
              radial-gradient(1000px 600px at 80% 20%, rgba(255,184,107,.10), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

.site-header{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(7,10,28,.55);
  border-bottom: 1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px; z-index:20;
}

.brand{
  text-decoration:none; display:flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.2px;
}
.brand-mark{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(109,240,255,.18), rgba(255,184,107,.12));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.brand-name{font-size:16px}

.nav{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
.nav a{opacity:.9; text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{opacity:1}
.nav .cta{
  padding:10px 12px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.hero{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; padding:42px 0 26px}
.hero-copy h1{
  margin:0 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  line-height:1.02;
  letter-spacing:-.6px;
}
.lead{margin:0 0 18px; color:var(--muted); font-size:18px; line-height:1.5; max-width:54ch}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  text-decoration:none; font-weight:700; font-size:14px;
}
.button:hover{background: rgba(255,255,255,.09)}
.button.primary{
  background: linear-gradient(135deg, rgba(109,240,255,.25), rgba(255,184,107,.18));
  border-color: rgba(109,240,255,.25);
}

.micro{margin:10px 0 0; color:rgba(244,246,255,.70); font-size:13px}

.hero-card{
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column; justify-content:space-between;
  min-height: 320px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  padding:18px;
}
.chip{
  height:64px;
  border-radius:14px;
  background:
    radial-gradient(100px 60px at 20% 20%, rgba(109,240,255,.18), transparent 60%),
    radial-gradient(120px 80px at 80% 60%, rgba(255,184,107,.14), transparent 60%),
    rgba(14,20,63,.65);
  border:1px solid rgba(255,255,255,.10);
}
.card-caption{
  padding:16px 18px 18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex; flex-direction:column; gap:8px;
}
.pill{
  width:max-content;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(109,240,255,.22);
  color: rgba(244,246,255,.92);
  background: rgba(109,240,255,.08);
}
.muted{color:var(--muted)}
.small{font-size:13px}

.tri{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  padding: 10px 0 18px;
}
.panel{
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
}
.panel h2{margin:0 0 8px; font-size:18px}
.panel p{margin:0 0 10px; color:var(--muted); line-height:1.55}
.textlink{font-weight:700; text-decoration:none; opacity:.95}
.textlink:hover{opacity:1}

.divider{
  height:1px; background: rgba(255,255,255,.12);
  margin: 18px 0;
}

.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  padding-bottom: 40px;
}
.wide{min-height: 190px}
.list{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.list a{text-decoration:none}
.list a:hover{text-decoration:underline}

.site-footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:18px 0 30px;
  background: rgba(0,0,0,.18);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

@media (max-width: 880px){
  .hero{grid-template-columns: 1fr}
  .tri{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
}
