:root{
  --bg: #0b1020;
  --bg2:#0a0f1c;
  --surface:#0f1730;
  --surface2:#121c38;
  --text:#e9eefc;
  --muted:#aab6d8;
  --border: rgba(233,238,252,.12);

  --brand:#7c6bff;
  --brand2:#19c37d;

  --shadow: 0 18px 48px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

/* Light mode (auto) */
@media (prefers-color-scheme: light){
  :root{
    --bg:#f7f8fc;
    --bg2:#ffffff;
    --surface:#ffffff;
    --surface2:#f3f5fb;
    --text:#0b1020;
    --muted:#4a5568;
    --border: rgba(11,16,32,.10);
    --shadow: 0 18px 48px rgba(11,16,32,.10);
  }
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(124,107,255,.22), transparent 60%),
    radial-gradient(1000px 600px at 90% 0%, rgba(25,195,125,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}

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

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: color-mix(in srgb, var(--bg2) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 190px;
}
.brand img{width:40px; height:40px; border-radius:12px}
.brand .brand-name{font-weight:850; letter-spacing:-.01em; line-height:1.1}
.brand .brand-sub{font-size:13px; color:var(--muted); line-height:1.2}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  color:var(--text);
  border-radius: 12px;
  padding:10px 12px;
  font-weight:750;
}

.site-nav{display:flex; align-items:center; gap:10px}
.site-nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  padding:10px 12px;
  border-radius: 12px;
}
.site-nav a:hover{color:var(--text); background: color-mix(in srgb, var(--surface2) 70%, transparent)}
.site-nav .cta{color:#fff; background:linear-gradient(90deg, var(--brand), var(--brand2))}
.site-nav .cta:hover{filter:brightness(.98)}

@media (max-width: 880px){
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .site-nav{display:none; position:absolute; left:0; right:0; top:64px; padding:12px 20px 18px 20px; background: color-mix(in srgb, var(--bg2) 92%, transparent); border-bottom:1px solid var(--border)}
  body.nav-open .site-nav{display:grid; gap:8px}
  .site-nav a{border:1px solid var(--border); background: color-mix(in srgb, var(--surface) 70%, transparent)}
  .site-nav a.cta{border:0}
}

/* Typography */
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  font-size:13px;
  font-weight:750;
}
.kicker i{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  display:inline-block;
}

h1{
  margin:14px 0 10px 0;
  letter-spacing:-.03em;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height:1.02;
}
h2{
  margin:0 0 10px 0;
  letter-spacing:-.02em;
  font-size: clamp(24px, 3.2vw, 34px);
}
h3{margin:0 0 8px 0; letter-spacing:-.01em; font-size:18px}
p{margin:0}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width: 60ch;
}
.sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width: 75ch;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  color:var(--text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{filter:brightness(1.03)}
.btn.primary{border:0; color:#fff; background:linear-gradient(90deg, var(--brand), var(--brand2))}
.btn.secondary{background: color-mix(in srgb, var(--surface2) 75%, transparent)}
.btn.link{border:0; background:transparent; color:var(--muted); padding:10px 6px}
.btn.link:hover{color:var(--text)}

/* Layout blocks */
.section{padding:62px 0}
.section.slim{padding:42px 0}
.section.muted{border-top:1px solid var(--border); border-bottom:1px solid var(--border); background: color-mix(in srgb, var(--surface) 55%, transparent)}

.hero{
  padding:62px 0 40px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 26px;
  align-items:center;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr;}
}

.actions{display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-top:18px}
.fineprint{margin-top:12px; color:var(--muted); font-size:13px; line-height:1.6}

.panel{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel.pad{padding:18px}

.shot{
  border-radius: 16px;
  border:1px solid var(--border);
  overflow:hidden;
  background: color-mix(in srgb, var(--surface2) 55%, transparent);
}
.shot img{width:100%}
.shot-grid{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:10px}
@media (max-width: 480px){
  .shot-grid{grid-template-columns: 1fr}
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}
@media (max-width: 940px){
  .col-4,.col-6,.col-8{grid-column: span 12}
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  padding:18px;
}
.card .meta{color:var(--muted); font-size:13px; margin-top:6px; line-height:1.45}
.card ul{margin:10px 0 0 0; padding:0 0 0 18px; color:var(--muted); line-height:1.6}

.statbar{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 18px;
}
.stat{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface2) 70%, transparent);
  font-size:13px;
  color:var(--muted);
  font-weight:750;
}

/* Profiles list */
.toolbar{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  margin-top: 18px;
}
.search{
  flex: 1 1 260px;
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border-radius: 999px;
  padding: 12px 14px;
}
.search input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  color:var(--text);
  font-size:14px;
}
.chipset{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  border:1px solid var(--border);
  background: color-mix(in srgb, var(--surface2) 70%, transparent);
  color:var(--muted);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  user-select:none;
}
.chip[aria-pressed="true"]{color:var(--text); border-color: color-mix(in srgb, var(--brand) 55%, var(--border));}

.profile-card{
  padding:0;
  overflow:hidden;
}
.profile-card .head{padding:18px 18px 12px 18px}
.profile-card .thumb{aspect-ratio: 16 / 9; background: color-mix(in srgb, var(--surface2) 70%, transparent); border-bottom:1px solid var(--border)}
.profile-card .thumb img{width:100%; height:100%; object-fit:cover}
.profile-card .title-row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.profile-card .title-row a{display:inline-flex; align-items:center; gap:10px; font-weight:900; font-size:18px}
.profile-card .title-row a:hover{color: color-mix(in srgb, var(--text) 85%, var(--brand))}
.profile-card .desc{color:var(--muted); line-height:1.6; margin-top:8px}
.profile-card .tags{display:flex; flex-wrap:wrap; gap:8px; padding:0 18px 18px 18px}
.tag{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 10px;
  background: color-mix(in srgb, var(--surface) 65%, transparent);
}

/* Pricing */
.price-grid .card{padding:22px}
.price{
  font-size:40px;
  letter-spacing:-.03em;
  margin-top: 10px;
}
.price small{font-size:14px; color:var(--muted); font-weight:750}
.muted{color:var(--muted)}

/* FAQ */
details{
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  padding: 14px 14px;
}
details + details{margin-top:10px}
summary{
  cursor:pointer;
  font-weight:850;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin-top:10px; color:var(--muted); line-height:1.7}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding: 26px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footer .links{display:flex; gap:14px; flex-wrap:wrap}

/* Small utility */
.sr-only{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}
