/* Project Clickable — styles */
:root{
  --bg:#0a0f1a;
  --panel:#131c2e;
  --panel2:#0e1525;
  --card-bg: rgba(19,28,46,.85);
  --text:#eaf0ff;
  --muted:#9fb2d6;
  --accent:#7c5cff;
  --accent2:#4dd6ff;
  --ok:#5dffb2;
  --warn:#ffd36a;
  --border: rgba(255,255,255,.12);
  --border-light: rgba(255,255,255,.06);
  --glow-accent: rgba(124,92,255,.15);
  --glow-cyan: rgba(77,214,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.4);
  --shadow-sm: 0 8px 32px rgba(0,0,0,.3);
  --radius: 16px;
  --max: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 1000px 600px at 10% 0%, rgba(124,92,255,.2), transparent 50%),
    radial-gradient(ellipse 800px 500px at 90% 0%, rgba(77,214,255,.15), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(93,255,178,.08), transparent 50%);
  background-attachment: fixed;
  overflow-x:hidden;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}

/* Nav */
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 20px;
  border:1px solid var(--border);
  background: rgba(19,28,46,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.05);
  position: sticky; top: 14px; z-index: 20;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.logo{
  width:36px; height:36px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, var(--ok) 120%);
  box-shadow: 0 8px 24px rgba(124,92,255,.3);
  position:relative; overflow:hidden;
}
.logo:after{
  content:""; position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 45%);
  transform: rotate(18deg);
}
.brand-text{display: flex; flex-direction: column; gap: 2px}
.brand-text b{letter-spacing:.2px; font-size: 14px}
.brand-text span{font-size: 11px; color: var(--muted); opacity: .8}
.navlinks{display:flex; gap:8px; flex-wrap:wrap; justify-content:center}
.navlinks a{
  text-decoration:none; color:var(--muted);
  padding:8px 12px; border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s ease;
}
.navlinks a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
  border-color: var(--border);
}
.cta{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}

/* Buttons */
.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color:var(--text);
  padding:10px 16px;
  border-radius: 999px;
  text-decoration:none;
  display:inline-flex; align-items:center; gap:10px;
  transition: all .15s ease;
  cursor:pointer;
  user-select:none;
  font-weight: 500;
}
.btn:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.btn:active{transform: translateY(0)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent) 0%, rgba(77,214,255,.85) 100%);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 8px 32px rgba(124,92,255,.35), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
}
.btn.primary:hover{
  box-shadow: 0 12px 40px rgba(124,92,255,.45), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px; border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Hero */
.hero{padding:56px 0 40px}
.grid2{display:grid; grid-template-columns: 1.15fr .85fr; gap:32px; align-items:start}
@media (max-width: 980px){.grid2{grid-template-columns: 1fr;}}
h1{
  margin:16px 0 16px; line-height:1.08;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing:-.5px;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead{font-size: clamp(15px, 2vw, 17px); color: var(--muted); line-height:1.6; margin:0 0 20px}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}

/* Cards */
.card{
  border:1px solid var(--border);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.04);
  padding:20px;
  position: relative;
  overflow: hidden;
}
.card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.card h3{margin:0 0 10px; font-size: 15px; font-weight: 600; color: var(--text)}
.card p{margin:0; color: var(--muted); line-height:1.6; font-size: 14px}
.miniGrid{display:grid; grid-template-columns:1fr; gap:16px}

/* Sections */
section{
  padding:48px 0;
  position: relative;
}
section::before{
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap; margin-bottom:24px;
}
h2{
  margin:0; font-size: 24px; letter-spacing:-.3px; font-weight: 600;
}
.sub{color:var(--muted); margin:6px 0 0; line-height:1.55; font-size: 15px}

/* Feature Grid */
.featureGrid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;
}
@media (max-width: 980px){.featureGrid{grid-template-columns: repeat(2, 1fr)}}
@media (max-width: 560px){.featureGrid{grid-template-columns: 1fr}}

.f{
  border:1px solid var(--border);
  background: var(--card-bg);
  border-radius: 14px;
  padding:18px;
  min-height: 140px;
  position: relative;
  transition: all .2s ease;
}
.f:hover{
  border-color: rgba(77,214,255,.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.f .tag{
  display:inline-flex; gap:6px; align-items:center;
  font-size: 12px; color: var(--text);
  background: linear-gradient(135deg, rgba(124,92,255,.2), rgba(77,214,255,.15));
  border: 1px solid rgba(124,92,255,.25);
  padding:6px 12px; border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 500;
}
.f b{display:block; margin-bottom:8px; font-size: 14px; color: var(--text)}
.f p{margin:0; color:var(--muted); line-height:1.55; font-size: 13px}

/* Split layout */
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px;
  margin-bottom: 16px;
}
.split:last-child{margin-bottom: 0}
@media (max-width: 980px){.split{grid-template-columns: 1fr}}

/* Note block */
.note{
  border:1px solid rgba(124,92,255,.2);
  background: linear-gradient(135deg, rgba(124,92,255,.08), rgba(77,214,255,.05));
  border-radius: 14px;
  padding:18px;
  color: var(--muted);
  line-height:1.6;
  margin-top:20px;
  font-size: 14px;
  position: relative;
}
.note::before{
  content: "💡";
  font-size: 16px;
}

/* FAQ */
.faq{}
details{
  border:1px solid var(--border);
  background: var(--card-bg);
  border-radius: 12px;
  padding:0;
  margin-bottom:12px;
  overflow: hidden;
  transition: all .2s ease;
}
details:hover{
  border-color: rgba(255,255,255,.18);
}
details[open]{
  border-color: rgba(124,92,255,.3);
  box-shadow: 0 8px 32px rgba(124,92,255,.08);
}
summary{
  cursor:pointer;
  font-weight: 600;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  list-style: none;
}
summary::-webkit-details-marker{display:none}
summary::before{
  content: "+";
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(124,92,255,.15);
  border: 1px solid rgba(124,92,255,.25);
  display: grid; place-items: center;
  font-weight: 400;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all .2s ease;
}
details[open] summary::before{
  content: "−";
  background: rgba(124,92,255,.25);
}
details p{
  margin:0;
  padding: 0 18px 16px;
  color:var(--muted);
  line-height:1.6;
  font-size: 14px;
}

/* Footer */
.footer{
  padding:32px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  font-size: 14px;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-info b{color: var(--text)}
.footer-links{display: flex; gap: 10px; flex-wrap: wrap}
.footer a{color: var(--muted); transition: color .15s ease}
.footer a:hover{color: var(--text)}

/* Misc */
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  color: var(--text);
}
.badgeRow{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 0}
.chip{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 14px; border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: all .15s ease;
}
.chip:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.dot{width:8px; height:8px; border-radius:999px; background: var(--warn)}
.dot.ok{background: var(--ok)}
.dot.acc{background: var(--accent2)}

/* Glow effects for section backgrounds */
#how{
  background: radial-gradient(ellipse 600px 300px at 20% 50%, rgba(124,92,255,.06), transparent);
}
#features{
  background: radial-gradient(ellipse 600px 300px at 80% 50%, rgba(77,214,255,.05), transparent);
}
#community{
  background: radial-gradient(ellipse 600px 300px at 30% 50%, rgba(93,255,178,.04), transparent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav{
    padding: 10px 14px;
    gap: 10px;
  }
  .navlinks{display: none}
  .wrap{padding: 16px}
  h1{font-size: 28px}
  h2{font-size: 22px}
  section{padding: 36px 0}
  .card, .f, .step{padding: 16px}
}
