:root{
  --bg:#0b0f14;
  --card:#0f1623;
  --card2:#111b2b;
  --text:#e8f0ff;
  --muted:#9fb0cc;
  --line:rgba(255,255,255,.085);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --accent:#f59e0b;
}
*{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:
    radial-gradient(1200px 800px at 18% -10%, rgba(245,158,11,.22) 0%, rgba(11,15,20,0) 55%),
    radial-gradient(1000px 700px at 92% 0%, rgba(79,70,229,.16) 0%, rgba(11,15,20,0) 60%),
    var(--bg);
}
a{color:inherit}
.page{
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:
    calc(24px + env(safe-area-inset-top))
    16px
    calc(24px + env(safe-area-inset-bottom))
    16px;
}
.wrap{width:min(980px,100%);}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15,22,35,.68);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.25px;
}
.brand img{height:30px;width:auto;display:block}
.navlinks{display:flex;gap:8px;flex-wrap:wrap}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
}
.navlinks a:hover{
  color:var(--text);
  border-color:var(--line);
  background: rgba(255,255,255,.04);
}
.card{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15,22,35,.68);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
}
@media (max-width: 860px){ .hero{grid-template-columns:1fr;} }
.hero-left{padding:22px}
.logo-big{width:min(360px,100%);height:auto;display:block;margin-bottom:14px}
h1{margin:0;font-size:clamp(26px,3.1vw,40px);letter-spacing:.15px}
.sub{margin:10px 0 0;color:var(--muted);font-size:16px;line-height:1.55;max-width:60ch}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.badge{border:1px solid var(--line);background:rgba(255,255,255,.03);padding:7px 10px;border-radius:999px;font-weight:800;font-size:13px}
.ctas{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  text-decoration:none;font-weight:900;
  transition:.16s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.07)}
.btn.primary{
  border-color: rgba(245,158,11,.55);
  background: linear-gradient(180deg, rgba(245,158,11,.22), rgba(255,255,255,.03));
}
.pill{background:var(--accent);color:#0b0f14;padding:4px 10px;border-radius:999px;font-size:12px;font-weight:900}
.hero-right{
  background: rgba(17,27,43,.7);
  border-left:1px solid var(--line);
  padding:18px;
  display:flex;align-items:center;justify-content:center;
}
@media (max-width: 860px){ .hero-right{border-left:0;border-top:1px solid var(--line);} }
.hero-photo{
  width:100%;max-width:420px;border-radius:16px;border:1px solid var(--line);
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  object-fit:cover;
}
.sections{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:18px;
}
@media (max-width: 860px){ .sections{grid-template-columns:1fr;} }
.section{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:16px;
}
.section h2{margin:0 0 8px;font-size:18px}
.section p{margin:0;color:var(--muted);line-height:1.6}
.section ul{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.7}
.section a{font-weight:900}
.footer{padding:14px 18px 18px;color:var(--muted);font-size:12px;text-align:center}

/* content pages */
.content{padding:22px}
.content h1{font-size:clamp(26px,3vw,36px)}
.content h2{margin:18px 0 8px;font-size:18px}
.content p{color:var(--muted);line-height:1.75;font-size:16px;max-width:78ch}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
@media (max-width: 860px){ .grid3{grid-template-columns:1fr;} }
.tile{border:1px solid var(--line);background:rgba(255,255,255,.03);border-radius:16px;padding:14px}
.tile strong{display:block;font-size:16px}
.tile span{display:block;margin-top:6px;color:var(--muted);font-size:13px;line-height:1.45}

/* FAQ */
.faq{margin-top:12px}
.faq details{border:1px solid var(--line);background:rgba(255,255,255,.03);border-radius:16px;padding:12px 14px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:10px 0 0}

/* link hub */
.hub{padding:22px}
.hub-top{display:flex;align-items:center;gap:14px}
.hub-logo{width:78px;height:auto}
.hub-title{margin:0;font-size:22px}
.hub-tag{margin:4px 0 0;color:var(--muted);font-size:14px;line-height:1.35}
.hub-btns{display:flex;flex-direction:column;gap:12px;margin-top:16px}
.hub-btns a{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 14px;border-radius:16px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);text-decoration:none;font-weight:900;
  transition:.16s ease;
}
.hub-btns a:hover{transform:translateY(-1px);background:rgba(255,255,255,.07)}
.arrow{color:var(--muted);font-weight:900}
.small{font-size:12px;color:var(--muted);margin-top:14px;text-align:center}
