:root {
  --bg: #0b0b0f;
  --card: #15151c;
  --card-2: #1c1c25;
  --border: #262633;
  --fg: #ececf1;
  --muted: #8a8a99;
  --primary: #6d8bff;
  --success: #3ecf8e;
  --danger: #f0717a;
  --warning: #e6b450;
  --radius: 18px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand .brand-logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.shots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px;
}
.shots figure {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 18px; text-align: center;
}
.shots img { width: 100%; max-height: 320px; object-fit: contain; }
.shots figcaption { color: var(--muted); font-size: 13px; margin-top: 10px; }
.guide { max-width: 680px; margin: 28px auto 0; color: var(--muted); padding-left: 22px; }
.guide li { margin: 10px 0; }
.guide strong { color: var(--fg); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--fg); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; font-weight: 700;
  padding: 11px 18px; border-radius: 12px; font-size: 14px;
  border: none; cursor: pointer; transition: transform .15s ease, opacity .15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; opacity: .95; }
.btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--fg); }

/* Hero */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109, 139, 255, .12); border: 1px solid rgba(109,139,255,.35);
  color: var(--primary); font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px; margin-bottom: 20px;
}
h1 { font-size: 46px; line-height: 1.1; font-weight: 800; letter-spacing: -.5px; }
h1 .grad {
  background: linear-gradient(135deg, var(--primary), var(--success));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { color: var(--muted); font-size: 18px; margin: 18px 0 26px; max-width: 520px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-note { color: var(--muted); font-size: 12px; margin-top: 14px; }

/* Phone mock */
.phone {
  width: 300px; height: 610px; margin: 0 auto; border-radius: 40px;
  background: linear-gradient(160deg, #101018, #05050a);
  border: 1px solid var(--border); padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.02);
  position: relative;
}
.phone .notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 22px; background: #05050a; border-radius: 0 0 14px 14px; z-index: 3;
}
.screen {
  height: 100%; border-radius: 28px; overflow: hidden;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.screen .top { padding: 26px 16px 12px; }
.screen .tabs { display: flex; gap: 14px; font-size: 12px; color: var(--muted); }
.screen .tabs .on { color: var(--fg); border-bottom: 2px solid var(--primary); padding-bottom: 4px; }
.mini {
  margin: 8px 16px; padding: 12px; border: 1px solid var(--border);
  border-radius: 14px; background: var(--card);
  animation: floaty 4s ease-in-out infinite;
}
.mini:nth-child(3) { animation-delay: .6s; }
.mini:nth-child(4) { animation-delay: 1.2s; }
.mini .row { display: flex; align-items: center; gap: 10px; }
.logo-c { width: 34px; height: 34px; border-radius: 9px; background: var(--card-2); display:grid; place-items:center; font-size: 12px; font-weight:700; color: var(--muted);}
.mini .name { font-size: 13px; font-weight: 700; }
.mini .sub { font-size: 10px; color: var(--muted); }
.pill { margin-left:auto; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 20px; }
.pill.open { color: var(--success); background: rgba(62,207,142,.14); border: 1px solid rgba(62,207,142,.4);}
.pill.up { color: var(--primary); background: rgba(109,139,255,.14); border: 1px solid rgba(109,139,255,.4);}
.stats { display:flex; gap: 10px; margin-top: 10px; }
.stat { flex:1; }
.stat .l { font-size: 9px; color: var(--muted);}
.stat .v { font-size: 13px; font-weight: 700; }
.v.green { color: var(--success); }

@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-5px);} }

/* Sections */
section { padding: 60px 0; }
.section-title { font-size: 30px; font-weight: 800; text-align: center; letter-spacing: -.3px; }
.section-sub { color: var(--muted); text-align: center; max-width: 620px; margin: 12px auto 0; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.feature .ico { width: 42px; height: 42px; border-radius: 11px; display:grid; place-items:center; font-size:20px; margin-bottom: 14px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.step { text-align:center; }
.step .n { width: 40px; height:40px; border-radius: 50%; margin: 0 auto 12px; display:grid; place-items:center; font-weight:800; color:#fff; background: linear-gradient(135deg, var(--primary), var(--success)); }
.step h4 { font-size: 15px; }
.step p { color: var(--muted); font-size: 13px; }

/* Disclaimer band */
.disband {
  background: var(--card); border: 1px solid rgba(230,180,80,.35);
  border-radius: var(--radius); padding: 22px; margin-top: 20px;
}
.disband h3 { display:flex; align-items:center; gap:10px; color: var(--warning); font-size: 16px; }
.disband p { color: var(--muted); font-size: 13px; margin-top: 8px; }

/* Legal pages */
.legal { padding: 48px 0 80px; }
.legal .doc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.legal h1 { font-size: 32px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.legal h2 { font-size: 19px; margin: 26px 0 8px; }
.legal p, .legal li { color: #c9c9d4; font-size: 15px; }
.legal ul { margin: 8px 0 8px 22px; }
.legal .note { background: var(--card-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; color: var(--muted); font-size: 13px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 34px 0; margin-top: 40px; }
.foot { display:flex; justify-content: space-between; align-items:center; flex-wrap: wrap; gap: 16px; }
.foot .links { display:flex; gap: 18px; flex-wrap: wrap; }
.foot .links a { color: var(--muted); font-size: 14px; }
.foot .credit { color: var(--muted); font-size: 13px; }
.foot .credit a { font-weight: 700; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone { margin-top: 20px; }
  .features { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 36px; }
  .nav-links a:not(.btn) { display: none; }
}
