:root{
  --bg0:#060812;
  --bg1:#0a1230;
  --bg2:#0b1b33;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.085);
  --stroke:rgba(255,255,255,.11);
  --stroke2:rgba(255,255,255,.16);
  --text:#eaf0ff;
  --heading:#ffffff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.58);
  --shadow:0 20px 64px rgba(0,0,0,.48);
  --shadowSoft:0 12px 38px rgba(0,0,0,.26);
  --radius:14px;
  --radiusLg:20px;
  --accent:#7c3aed;   /* purple */
  --accent2:#a855f7;  /* violet */
  --accentHover:#6d28d9;
  --ok:#22c55e;
  --danger:#fb7185;
  --container:1080px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(124,58,237,.22), rgba(124,58,237,0) 62%),
    radial-gradient(900px 520px at 82% 30%, rgba(59,130,246,.16), rgba(59,130,246,0) 62%),
    radial-gradient(900px 520px at 18% 30%, rgba(168,85,247,.14), rgba(168,85,247,0) 62%),
    linear-gradient(180deg, #050610, var(--bg1) 52%, #070b18);
  line-height:1.55;
  overflow-x:hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:16px;top:16px;width:auto;height:auto;z-index:9999;
  background:#fff;color:#111;padding:10px 12px;border-radius:12px;box-shadow:var(--shadow);
}

/* Accessibility / anchors */
[id]{scroll-margin-top: 92px;}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg, rgba(6,8,18,.82), rgba(6,8,18,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--heading);
  font-weight:800;letter-spacing:.2px;
}
.brand-mark{
  width:22px;height:22px;border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.92), rgba(255,255,255,.12) 55%, rgba(255,255,255,0) 72%),
    conic-gradient(from 190deg, rgba(255,255,255,.04), rgba(255,255,255,.85), rgba(255,255,255,.10));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.nav{
  justify-self:center;
  display:flex;align-items:center;gap:14px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.nav a{
  color:rgba(234,240,255,.80);
  text-decoration:none;
  font-weight:650;
  font-size:13px;
  padding:7px 10px;border-radius:999px;
}
.nav a:hover{background:rgba(255,255,255,.06);color:var(--heading)}
.nav-cta{
  justify-self:end;
}
.nav-cta a{
  display:inline-flex;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  user-select:none;
}
.btn-sm{padding:10px 14px;border-radius:12px;font-size:13px}
.btn:active{transform: translateY(1px)}
.btn:focus-visible{outline: none; box-shadow: 0 0 0 3px rgba(124,58,237,.30), 0 0 0 6px rgba(0,0,0,.2);}
.btn-primary{
  background:linear-gradient(180deg, var(--accent), var(--accent2));
  color:#ffffff;
  box-shadow: 0 18px 42px rgba(124,58,237,.22);
}
.btn-primary:hover{box-shadow: 0 22px 52px rgba(124,58,237,.28)}
.btn-secondary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  color:var(--heading);
}
.btn-secondary:hover{background:rgba(255,255,255,.09)}

/* Hero */
.hero{
  padding: 76px 0 30px;
}
.hero-grid{display:block}
.hero-center{
  max-width: 820px;
  margin: 0 auto;
  text-align:center;
}
.kicker{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(234,240,255,.60);
}
.grad{
  background: linear-gradient(90deg, rgba(124,58,237,1), rgba(168,85,247,1), rgba(59,130,246,1));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.86);
  font-weight:700;
  font-size:12.5px;
}
.eyebrow .dot{
  width:8px;height:8px;border-radius:999px;background:var(--ok);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}
.hero h1{
  margin:14px 0 12px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.06;
  letter-spacing:-.035em;
  color:var(--heading);
  max-width: 24ch;
}
.hero .sub{
  margin:0 0 16px;
  color:var(--muted);
  font-size: 16px;
  max-width: 64ch;
}
.hero .support{
  margin:0 0 22px;
  color:var(--muted2);
  font-size: 13.5px;
  max-width: 72ch;
}
.hero-actions{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
  justify-content:center;
}
.hero-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  color:rgba(234,240,255,.70);
  font-size:13px;
}
.hero-list li{
  display:flex;gap:10px;align-items:flex-start;
}
.hero-list li::before{
  content:"";
  width:18px;height:18px;flex:0 0 auto;margin-top:2px;
  border-radius:9px;
  background:rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.35);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath fill-rule='evenodd' d='M16.704 5.29a1 1 0 0 1 .006 1.414l-7.25 7.3a1 1 0 0 1-1.42.003L3.29 9.246a1 1 0 1 1 1.415-1.414l3.032 3.03 6.54-6.572a1 1 0 0 1 1.427 0Z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath fill-rule='evenodd' d='M16.704 5.29a1 1 0 0 1 .006 1.414l-7.25 7.3a1 1 0 0 1-1.42.003L3.29 9.246a1 1 0 1 1 1.415-1.414l3.032 3.03 6.54-6.572a1 1 0 0 1 1.427 0Z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.hero-list strong{color:rgba(234,240,255,.92)}

/* Hero metrics row (as in reference) */
.metrics{
  margin: 18px auto 0;
  max-width: 760px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.metric{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius: 16px;
  padding:12px 12px;
  box-shadow: var(--shadowSoft);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height: 56px;
}
.metric .num{
  font-weight:900;
  letter-spacing:-.02em;
  color:#fff;
}
.metric .label{
  font-size:12.5px;
  color:rgba(234,240,255,.66);
  font-weight:650;
}
.metric .dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}

/* Hero mock scene centered */
.hero-mock{
  margin-top: 22px;
  display:flex;
  justify-content:center;
}
.mock-scene{
  width: min(860px, 100%);
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.mock-scene::before{
  content:"";
  position:absolute;inset:-80px;
  background:
    radial-gradient(520px 280px at 30% 30%, rgba(124,58,237,.22), rgba(124,58,237,0) 60%),
    radial-gradient(680px 320px at 78% 58%, rgba(59,130,246,.18), rgba(59,130,246,0) 62%);
  filter: blur(3px);
}
.mock-inner{position:relative;min-height: 320px;}
.mock-phone{
  position:absolute;
  left: 24px;
  bottom: 18px;
  width: min(240px, 38%);
  aspect-ratio: 9/16;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(6,8,18,.62);
  box-shadow: 0 28px 80px rgba(0,0,0,.44);
  overflow:hidden;
  transform: rotate(-1deg);
}
.mock-phone .top{
  height:44px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.88);
  font-weight:800;font-size:12px;
}
.mock-phone .body{padding:14px}
.mock-qr{
  width:46px;height:46px;border-radius:12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.06)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.75) 0 2px, rgba(255,255,255,0) 2px 6px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.60) 0 2px, rgba(255,255,255,0) 2px 6px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}
.mock-chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.86);
  font-weight:700;font-size:11.5px;
}
.mock-list{margin-top:12px;display:grid;gap:10px}
.mock-item{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 10px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.mock-item span{color:rgba(234,240,255,.84);font-size:11.5px}
.mock-item strong{color:#fff;font-size:11.5px}

.mock-panel{
  position:absolute;
  right: 24px;
  top: 18px;
  width: min(520px, 58%);
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,8,18,.48);
  box-shadow: 0 28px 80px rgba(0,0,0,.40);
  overflow:hidden;
}
.mock-panel .bar{
  height:44px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.88);
  font-weight:800;font-size:12px;
}
.mock-panel .content{
  padding:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.mock-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding:12px;
}
.mock-card h4{
  margin:0 0 10px;
  font-size:12px;
  color:rgba(234,240,255,.92);
  letter-spacing:-.01em;
}
.mock-stat{
  display:flex;align-items:center;justify-content:space-between;
  color:rgba(234,240,255,.80);
  font-size:11.5px;
  margin-top:10px;
}
.mock-stat strong{color:#fff}
.mock-barline{height:10px;border-radius:999px;background:rgba(255,255,255,.10);overflow:hidden}
.mock-barline > span{display:block;height:100%;width:72%;background:linear-gradient(90deg, rgba(124,58,237,.95), rgba(168,85,247,.95));border-radius:999px}
.mock-wide{grid-column:1/-1}
.mock-tags{display:flex;flex-wrap:wrap;gap:8px}
.mock-tag{
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.82);
  font-size:11px;
  font-weight:750;
}

/* Visual mockup */
.visual{display:none;} /* replaced by mock-scene in hero */
.visual::before{
  content:"";
  position:absolute;inset:-60px;
  background:
    radial-gradient(520px 240px at 24% 28%, rgba(245,158,11,.24), rgba(245,158,11,0) 60%),
    radial-gradient(680px 280px at 78% 56%, rgba(79,70,229,.24), rgba(79,70,229,0) 62%);
  filter: blur(2px);
}
.visual-inner{position:absolute;inset:0;padding:18px}
.tv{
  position:absolute;
  right:16px;top:16px;
  width:min(460px, 78%);
  aspect-ratio: 16/10;
  border-radius:18px;
  background:rgba(6,8,18,.55);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 80px rgba(0,0,0,.40);
  overflow:hidden;
}
.tv .top{
  height:44px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.88);
  font-weight:800;font-size:12px;
}
.tv .content{
  padding:14px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:10px;
}
.ui-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px;
}
.ui-card h4{
  margin:0 0 10px;
  font-size:12px;
  color:rgba(234,240,255,.92);
  letter-spacing:-.01em;
}
.ui-stat{
  display:flex;align-items:center;justify-content:space-between;
  color:rgba(234,240,255,.82);
  font-size:11.5px;
  margin-top:10px;
}
.ui-stat strong{color:#fff}
.barline{
  height:10px;border-radius:999px;background:rgba(255,255,255,.10);
  overflow:hidden;
}
.barline > span{
  display:block;height:100%;width:68%;
  background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(255,122,26,.95));
  border-radius:999px;
}
.ui-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.tag{
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.82);
  font-size:11px;
  font-weight:750;
}

.phone{
  position:absolute;
  left:18px;bottom:16px;
  width:min(260px, 56%);
  aspect-ratio: 9/16;
  border-radius:28px;
  background:rgba(6,8,18,.62);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.44);
  overflow:hidden;
  transform: rotate(-1.1deg);
}
.phone .top{
  height:44px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.88);
  font-weight:800;font-size:12px;
}
.qr{
  width:52px;height:52px;border-radius:12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.06)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.70) 0 2px, rgba(255,255,255,0) 2px 6px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 2px, rgba(255,255,255,0) 2px 6px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}
.phone .body{padding:14px}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.86);
  font-weight:700;font-size:11.5px;
}
.mini-list{margin-top:12px;display:grid;gap:10px}
.mini-item{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 10px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.mini-item span{color:rgba(234,240,255,.84);font-size:11.5px}
.mini-item strong{color:#fff;font-size:11.5px}

/* Shared section layout */
.section{padding: 84px 0;}
.section.compact{padding: 68px 0;}
.section-head{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.section-head h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.02em;
  color:var(--heading);
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:14.5px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.panel{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radiusLg);
  padding:20px;
  box-shadow: var(--shadowSoft);
}
.panel h3{
  margin:0 0 12px;
  font-size:16px;
  color:var(--heading);
  letter-spacing:-.01em;
}
.bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.bullets li{
  display:flex;gap:10px;align-items:flex-start;
  color:var(--muted);
  font-size:13.5px;
}
.ic{
  width:22px;height:22px;border-radius:10px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.92);
  flex:0 0 auto;
  font-weight:900;
}
.ic.bad{
  border-color: rgba(251,113,133,.30);
  background: rgba(251,113,133,.10);
}
.ic.ok{
  border-color: rgba(34,197,94,.32);
  background: rgba(34,197,94,.10);
}
.bullets strong{color:rgba(234,240,255,.92)}

/* Features */
.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radiusLg);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.feature .icon{
  width:42px;height:42px;border-radius:16px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  margin-bottom:12px;
  position:relative;
}
.feature .icon::before{
  content:"";
  width:20px;height:20px;
  background: linear-gradient(180deg, rgba(245,158,11,.95), rgba(255,122,26,.95));
  -webkit-mask: var(--mask) center / contain no-repeat;
          mask: var(--mask) center / contain no-repeat;
}
.i-qr{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 3h8v8H3V3Zm2 2v4h4V5H5Zm8-2h8v8h-8V3Zm2 2v4h4V5h-4ZM3 13h8v8H3v-8Zm2 2v4h4v-4H5Zm10-2h6v2h-4v2h4v4h-6v-8Zm2 6v-2h-2v2h2Zm-2-4v-2h-2v2h2Zm-2 6h2v-2h-2v2Z'/%3E%3C/svg%3E");}
.i-manage{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm0 2v14h10V5H7Zm2 2h6v2H9V7Zm0 4h6v2H9v-2Zm0 4h4v2H9v-2Z'/%3E%3C/svg%3E");}
.i-star{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 17.27 6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27Z'/%3E%3C/svg%3E");}
.i-photo{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3l2-2h4l2 2h3a2 2 0 0 1 2 2v12ZM5 7v12h14V7h-3.83l-2-2h-2.34l-2 2H5Zm7 10a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0-2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'/%3E%3C/svg%3E");}
.i-tv{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 5h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-6v2h3v2H7v-2h3v-2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v9h16V7H4Z'/%3E%3C/svg%3E");}
.i-stats{--mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M5 9h3v10H5V9Zm5-4h3v14h-3V5Zm5 7h3v7h-3v-7ZM4 21h16v2H4v-2Z'/%3E%3C/svg%3E");}

.feature h3{margin:0 0 8px;font-size:15px;color:var(--heading);letter-spacing:-.01em}
.feature p{margin:0;color:var(--muted);font-size:13.5px}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radiusLg);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.step .n{
  width:36px;height:36px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;color:#111827;
  background:linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 34px rgba(245,158,11,.18);
  margin-bottom:12px;
}
.step h3{margin:0 0 8px;font-size:15px;color:var(--heading)}
.step p{margin:0;color:var(--muted);font-size:13.5px}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radiusLg);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.quote p{margin:0 0 12px;color:rgba(234,240,255,.86);font-size:13.5px}
.who{display:flex;align-items:center;justify-content:space-between;color:var(--muted2);font-size:12.5px}
.who strong{color:rgba(234,240,255,.92)}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.plan{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radiusLg);
  padding:20px;
  box-shadow: var(--shadowSoft);
}
.plan.featured{
  border-color: rgba(245,158,11,.45);
  box-shadow: 0 26px 72px rgba(245,158,11,.11);
}
.plan h3{margin:0 0 8px;font-size:15px;color:var(--heading)}
.plan .desc{margin:0 0 14px;color:var(--muted);font-size:13.5px}
.plan ul{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.plan li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:13.5px}
.plan li::before{content:"✓";color:rgba(34,197,94,.95);font-weight:900}
.plan .actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}

/* Final CTA */
.final{
  padding: 86px 0 96px;
}
.cta-card{
  border:1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(245,158,11,.18), rgba(245,158,11,0) 60%),
    radial-gradient(900px 420px at 80% 70%, rgba(79,70,229,.18), rgba(79,70,229,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap:16px;
  align-items:center;
}
.cta-card h2{margin:0 0 10px;font-size:22px;color:var(--heading);letter-spacing:-.02em}
.cta-card p{margin:0;color:var(--muted);font-size:13.8px}
.cta-actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 38px 0 18px;
  background: linear-gradient(180deg, rgba(6,8,18,.12), rgba(0,0,0,.24));
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-bottom: 16px;
}
.footer h3{margin:0 0 10px;color:var(--heading);font-size:13px;letter-spacing:.02em}
.footer a{
  display:block;
  color: rgba(234,240,255,.72);
  text-decoration:none;
  font-size:13px;
  margin: 8px 0;
}
.footer a:hover{color:#fff}
.footer small{display:block;color:rgba(234,240,255,.60);font-size:12.5px;margin-top:10px}
.footer-bottom{
  text-align:center;
  color: rgba(234,240,255,.56);
  font-size:12px;
  padding-top: 12px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important;}
}

/* Responsive */
@media (max-width: 1060px){
  .metrics{grid-template-columns:1fr;max-width: 520px}
  .mock-inner{min-height: 360px}
  .mock-panel{position:relative;right:auto;top:auto;width:100%;margin-top:12px}
  .mock-phone{position:relative;left:auto;bottom:auto;width:min(280px, 86%);margin:0 auto 12px}
  .mock-panel .content{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .cta-card{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
  .footer-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .container{padding:0 18px}
  .nav{display:none}
  .hero{padding: 52px 0 32px}
  .hero h1{max-width: 22ch}
  .hero-actions{gap:10px}
  .btn{width:100%}
  .btn-secondary{width:100%}
  .mock-scene{padding:14px}
  .mock-inner{min-height: 0}
  .section{padding: 62px 0}
  .section.compact{padding: 54px 0}
  .footer-grid{grid-template-columns: 1fr}
}

