:root {
    --bg: #0a0a0a;
    --card: #111111;
    --card2: #161616;
    --blue: #00aaff;
    --green: #6bcb77;
    --yellow: #ffd93d;
    --red: #ff6b6b;
    --text: #e8e8e8;
    --muted: #888888;
    --faint: #555555;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
  }
  a { color: var(--blue); text-decoration: none; }
  .wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

  /* Nav */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .logo { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; color: var(--blue); }
  .logo img { width: 30px; height: 30px; }
  nav .links a { color: var(--muted); margin-left: 24px; font-size: 14px; }
  nav .links a:hover { color: var(--text); }
  nav .links a.cta {
    color: #001018; background: var(--blue); padding: 8px 18px;
    border-radius: 8px; font-weight: 600;
  }

  /* Hero */
  .hero { text-align: center; padding: 72px 0 40px; }
  .hero h1 {
    font-size: clamp(32px, 5.5vw, 54px);
    font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  }
  .hero h1 span { color: var(--blue); }
  .hero p.sub {
    color: var(--muted); font-size: clamp(16px, 2.2vw, 19px);
    max-width: 640px; margin: 18px auto 0;
  }
  .hero .actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* Products */
  .product-card {
    display: flex; flex-direction: column;
  }
  .product-card .status {
    align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
  }
  .status.live { background: rgba(107,203,119,.12); color: var(--green); }
  .status.soon { background: rgba(255,217,61,.10); color: var(--yellow); }
  .product-card.upcoming { border-style: dashed; border-color: #2a2a2a; }
  .product-card .plink { margin-top: auto; padding-top: 16px; font-size: 14px; font-weight: 600; }

  /* Pricing */
  .price-card {
    max-width: 420px; margin: 44px auto 0;
    background: var(--card); border: 1px solid #1a2a36; border-radius: 20px;
    padding: 40px 36px; text-align: center; position: relative;
    box-shadow: 0 20px 60px rgba(0,170,255,.08);
  }
  .price-card .badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: #001018; font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 999px; white-space: nowrap;
  }
  .price-card .amount { font-size: 56px; font-weight: 800; margin-top: 10px; }
  .price-card .amount small { font-size: 16px; color: var(--muted); font-weight: 500; }
  .price-card .tagline { color: var(--muted); font-size: 14px; }
  .price-card ul { list-style: none; text-align: left; margin: 26px 0 30px; }
  .price-card ul li { padding: 8px 0; color: var(--muted); font-size: 14.5px; }
  .price-card ul li::before { content: "✔"; color: var(--green); margin-right: 12px; }
  .price-card .fineprint { margin-top: 14px; color: var(--faint); font-size: 12.5px; }
  .btn {
    display: inline-block; padding: 14px 32px; border-radius: 10px;
    font-size: 16px; font-weight: 700; transition: transform .12s ease, box-shadow .12s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn.primary { background: var(--blue); color: #001018; box-shadow: 0 8px 30px rgba(0,170,255,.25); }
  .btn.ghost { background: var(--card); color: var(--text); border: 1px solid #222; }
  .hero .note { margin-top: 14px; color: var(--faint); font-size: 13px; }

  .shot { margin: 56px auto 0; max-width: 920px; }
  .shot img {
    width: 100%; border-radius: 14px; border: 1px solid #1e1e1e;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(0,170,255,.07);
  }

  /* Sections */
  section { padding: 80px 0; }
  h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; text-align: center; letter-spacing: -.5px; }
  .section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 12px auto 0; }

  .grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px; margin-top: 44px;
  }
  .card {
    background: var(--card); border: 1px solid #1c1c1c; border-radius: 14px;
    padding: 28px;
  }
  .card .icon { font-size: 28px; }
  .card h3 { margin: 12px 0 6px; font-size: 17px; }
  .card p { color: var(--muted); font-size: 14.5px; }

  /* .cam section */
  .cam-flex { display: flex; gap: 36px; align-items: center; margin-top: 44px; flex-wrap: wrap; }
  .cam-flex > div { flex: 1 1 340px; }
  .cam-code {
    background: var(--card); border: 1px solid #1c1c1c; border-radius: 14px;
    padding: 22px; font-family: Consolas, monospace; font-size: 13px;
    color: #b8b8b8; overflow-x: auto; white-space: pre;
  }
  .cam-code .k { color: var(--blue); }
  .cam-code .s { color: var(--green); }
  .cam-code .n { color: var(--yellow); }
  .cam-points { list-style: none; }
  .cam-points li { padding: 10px 0; color: var(--muted); display: flex; gap: 12px; }
  .cam-points li b { color: var(--text); }
  .cam-points .dot { color: var(--green); }

  /* Steps */
  .steps { counter-reset: step; }
  .steps .card { position: relative; }
  .steps .num {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,170,255,.12); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; margin-bottom: 14px;
  }

  /* FAQ */
  .faq { max-width: 720px; margin: 44px auto 0; }
  details {
    background: var(--card); border: 1px solid #1c1c1c; border-radius: 12px;
    padding: 18px 22px; margin-bottom: 12px;
  }
  summary { cursor: pointer; font-weight: 600; font-size: 15.5px; }
  details p { margin-top: 10px; color: var(--muted); font-size: 14.5px; }

  /* Download band */
  .band {
    background: linear-gradient(135deg, rgba(0,170,255,.10), rgba(107,203,119,.06));
    border: 1px solid #1a2a36; border-radius: 20px;
    text-align: center; padding: 64px 28px;
  }
  .band h2 { margin-bottom: 8px; }
  .band p { color: var(--muted); }
  .band .btn { margin-top: 26px; }

  footer {
    border-top: 1px solid #161616; margin-top: 80px;
    padding: 36px 0; text-align: center; color: var(--faint); font-size: 13px;
  }
  footer .logo { justify-content: center; font-size: 15px; margin-bottom: 8px; }
  footer .logo img { width: 22px; height: 22px; }
