:root{
  --bg:#060817;
  --panel:#0b1023;
  --panel-2:#0a0e1f;
  --text:#eaf0ff;
  --muted:#9aa7c6;
  --border:rgba(150,170,220,0.16);
  --shadow:0 22px 60px rgba(0,0,0,0.55);
  --radius:18px;
  --primary:#4f5df3;
  --primary-2:#6a78ff;
  --primary-3:#3a46d7;
  --ring:rgba(79,93,243,0.35);
  --danger:#ff3b30;
  --space-1:8px;
  --space-2:12px;
  --space-3:16px;
  --space-4:24px;
  --space-5:32px;
  --space-6:48px;
  --space-7:72px;
  --container:1120px;
}

*{box-sizing:border-box}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html,body{height:100%;overflow-x:hidden}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 12% 0%, rgba(79,93,243,0.35), transparent 60%),
    radial-gradient(900px 700px at 86% 10%, rgba(106,120,255,0.22), transparent 55%),
    radial-gradient(700px 500px at 50% 40%, rgba(79,93,243,0.14), transparent 60%),
    var(--bg);
  font:14px/1.45 Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

a{color:inherit}
button{font:inherit}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  background:var(--panel);
  color:var(--text);
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(6,8,23,0.5);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(150,170,220,0.12);
}
.site-header.elevated{
  background:rgba(6,8,23,0.72);
  border-bottom-color:rgba(150,170,220,0.18);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:220px;
}
.brand-mark{
  width:36px;
  height:36px;
  border-radius:12px;
  display:block;
  object-fit:contain;
  box-shadow:0 18px 34px rgba(79,93,243,0.38);
}
.brand-mark.small{width:28px;height:28px;border-radius:10px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-weight:750;letter-spacing:0.2px}
.brand-sub{font-size:11px;color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  padding:8px 10px;
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.5);
  border-radius:999px;
}
.nav-link{
  text-decoration:none;
  color:rgba(234,240,255,0.85);
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
}
.nav-link:hover{background:rgba(255,255,255,0.06)}

.header-cta{display:flex;align-items:center;gap:10px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  border:1px solid rgba(150,170,220,0.18);
  background:rgba(11,16,35,0.45);
  color:var(--text);
  padding:10px 14px;
  text-decoration:none;
  cursor:pointer;
  transition:transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(150,170,220,0.3);background:rgba(11,16,35,0.62)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:none;box-shadow:0 0 0 4px var(--ring)}
.btn[disabled], .btn[aria-disabled="true"]{opacity:0.55;pointer-events:none}

.btn-lg{padding:12px 18px;font-weight:650}
.btn-primary{
  border-color:rgba(79,93,243,0.5);
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow:0 18px 36px rgba(79,93,243,0.28);
}
.btn-primary:hover{border-color:rgba(79,93,243,0.7);box-shadow:0 20px 44px rgba(79,93,243,0.36)}
.btn-secondary{
  border-color:rgba(150,170,220,0.22);
  background:rgba(255,255,255,0.06);
}
.btn-ghost{background:transparent}

.hero{padding:var(--space-7) 0 var(--space-6);position:relative;overflow:hidden}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  border:1px solid rgba(79,93,243,0.35);
  background:rgba(79,93,243,0.10);
  padding:8px 12px;
  color:rgba(234,240,255,0.92);
  font-size:12px;
}
.badge-dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 0 5px rgba(79,93,243,0.22);
}
.hero-title{
  margin:16px 0 12px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-0.6px;
}
.hero-title-accent{
  display:block;
  margin-top:10px;
  color:rgba(234,240,255,0.96);
  background:linear-gradient(90deg, rgba(255,255,255,0.92), rgba(106,120,255,0.95), rgba(79,93,243,0.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-subtitle{
  margin:0;
  color:rgba(154,167,198,0.92);
  font-size:15px;
  max-width:56ch;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.hero-meta{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.meta-item{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.5);
  border-radius:14px;
  padding:12px 12px;
}
.meta-k{display:block;color:rgba(154,167,198,0.92);font-size:11px}
.meta-v{display:block;margin-top:4px;font-weight:650;font-size:13px}

.hero-media{position:relative;isolation:isolate}
.device-card{
  position:relative;
  border-radius:22px;
  border:1px solid rgba(150,170,220,0.18);
  background:linear-gradient(180deg, rgba(11,16,35,0.92), rgba(11,16,35,0.74));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.device-topbar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-bottom:1px solid rgba(150,170,220,0.12);
  background:rgba(6,8,23,0.52);
}
.dot{width:10px;height:10px;border-radius:999px;opacity:0.9}
.dot-red{background:#ff3b30}
.dot-yellow{background:#ffcc00}
.dot-green{background:#34c759}
.device-title{margin-left:8px;font-size:12px;color:rgba(154,167,198,0.9)}
.device-body{position:relative;padding:18px}
.shot-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.shot{
  border-radius:18px;
  border:1px dashed rgba(150,170,220,0.18);
  background:
    radial-gradient(200px 120px at 40% 10%, rgba(79,93,243,0.22), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  min-height:0;
  position:relative;
  overflow:hidden;
}
.shot-image{display:block;width:100%;height:auto}
.shot-label{
  position:absolute;
  left:14px;
  top:14px;
  font-size:12px;
  color:rgba(234,240,255,0.88);
}
.shot-lines{
  position:absolute;
  inset:42px 14px 14px;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.08) 8px,
    rgba(255,255,255,0.00) 8px,
    rgba(255,255,255,0.00) 18px
  );
  border-radius:12px;
  opacity:0.7;
}
.floating-pill{
  position:absolute;
  left:18px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(150,170,220,0.16);
  background:rgba(6,8,23,0.55);
  color:rgba(234,240,255,0.92);
  font-size:12px;
}
.pill-dot{
  width:10px;height:10px;border-radius:999px;
  background:#ff3b30;
  box-shadow:0 0 0 6px rgba(255,59,48,0.18);
}
.hero-glow{
  position:absolute;
  inset:0;
  background:radial-gradient(520px 420px at 65% 45%, rgba(79,93,243,0.32), transparent 62%);
  filter:blur(18px);
  z-index:-1;
  pointer-events:none;
}

.section{padding:var(--space-7) 0}
.section-alt{
  background:
    radial-gradient(900px 600px at 15% 20%, rgba(79,93,243,0.16), transparent 60%),
    radial-gradient(800px 600px at 85% 40%, rgba(106,120,255,0.12), transparent 55%),
    rgba(11,16,35,0.22);
  border-top:1px solid rgba(150,170,220,0.10);
  border-bottom:1px solid rgba(150,170,220,0.10);
}
.section-head{max-width:72ch}
.section-head h2{margin:0;font-size:28px;letter-spacing:-0.3px}
.section-head p{margin:10px 0 0;color:rgba(154,167,198,0.92);font-size:14px}

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}
.step{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.55);
  border-radius:20px;
  padding:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.28);
}
.step-idx{
  width:34px;height:34px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(79,93,243,0.18);
  border:1px solid rgba(79,93,243,0.35);
  color:rgba(234,240,255,0.94);
  font-weight:750;
}
.step h3{margin:14px 0 8px;font-size:16px}
.step p{margin:0;color:rgba(154,167,198,0.92)}
.step-shot{
  margin-top:14px;
  border-radius:16px;
  height:140px;
  border:1px dashed rgba(150,170,220,0.18);
  background:
    radial-gradient(180px 120px at 40% 30%, rgba(79,93,243,0.2), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.feature-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.feature{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.55);
  border-radius:20px;
  padding:16px;
}
.feature-icon{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(79,93,243,0.18);
  border:1px solid rgba(79,93,243,0.3);
  margin-bottom:12px;
}
.feature h3{margin:0 0 8px;font-size:16px}
.feature p{margin:0;color:rgba(154,167,198,0.92)}

.feature-split{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.split-copy{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.55);
  border-radius:22px;
  padding:18px;
}
.split-copy h3{margin:0 0 10px;font-size:18px}
.split-copy p{margin:0 0 14px;color:rgba(154,167,198,0.92)}
.checklist{margin:0;padding-left:18px;color:rgba(234,240,255,0.9)}
.checklist li{margin:8px 0}
.split-shot{
  border-radius:22px;
  border:1px dashed rgba(150,170,220,0.18);
  background:
    radial-gradient(260px 180px at 30% 20%, rgba(79,93,243,0.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  min-height:260px;
  overflow: hidden;
}

.privacy-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.privacy-card{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.55);
  border-radius:20px;
  padding:16px;
}
.privacy-card h3{margin:0 0 8px;font-size:16px}
.privacy-card p{margin:0;color:rgba(154,167,198,0.92)}

.faq{margin-top:18px;display:grid;gap:10px}
.faq-item{
  border:1px solid rgba(150,170,220,0.14);
  background:rgba(11,16,35,0.55);
  border-radius:18px;
  padding:14px 14px;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-weight:650;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  color:rgba(154,167,198,0.9);
  font-weight:750;
}
.faq-item[open] summary::after{content:"–"}
.faq-body{margin-top:10px;color:rgba(154,167,198,0.92)}

.cta{padding:var(--space-7) 0 var(--space-7)}
.cta-card{
  border-radius:26px;
  border:1px solid rgba(79,93,243,0.28);
  background:linear-gradient(135deg, rgba(79,93,243,0.18), rgba(11,16,35,0.6));
  box-shadow:0 22px 60px rgba(0,0,0,0.45);
  padding:22px;
}
.cta-copy h2{margin:0 0 10px;font-size:26px}
.cta-copy p{margin:0;color:rgba(234,240,255,0.88);max-width:78ch}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.cta-note{margin-top:12px;color:rgba(154,167,198,0.92);font-size:12px}

.site-footer{
  padding:28px 0;
  border-top:1px solid rgba(150,170,220,0.12);
  background:rgba(6,8,23,0.55);
  backdrop-filter:blur(14px);
}
.footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-name{font-weight:750}
.footer-sub{color:rgba(154,167,198,0.92);font-size:12px;margin-top:2px}
.footer-meta{margin-top:12px;color:rgba(154,167,198,0.9);font-size:12px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.footer-link{text-decoration:none;color:rgba(154,167,198,0.9)}
.footer-link:hover{color:rgba(234,240,255,0.92)}
.sep{opacity:0.65}

@media (max-width: 980px){
  .nav{display:none}
  .hero-grid{grid-template-columns:1fr;gap:20px}
  .hero-title{font-size:38px}
  .hero-meta{grid-template-columns:1fr;gap:10px}
  .steps{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .privacy-grid{grid-template-columns:1fr}
  .feature-split{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
}

/* Simplified Steps */
.steps-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-simple {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 170, 220, 0.1);
  border-radius: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
}

.step-simple:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(79, 93, 243, 0.15);
  color: var(--primary-2);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(79, 93, 243, 0.3));
}

.step-simple:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--muted);
  width: 24px;
  text-align: center;
  z-index: 2;
  font-weight: 300;
  opacity: 0.5;
}

.step-simple h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.step-simple p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.how-more {
  margin-top: 40px;
  text-align: center;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-2);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.link-more:hover {
  gap: 10px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .steps-simple {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .step-simple:not(:last-child)::after {
    content: "↓";
    right: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(50%);
  }
}
