  :root {
    --navy: #05081a; --deep: #0a1030; --panel: #0e1638; --line: #66bdff2e;
    --text: #d6dbe8; --muted: #8e97ad; --white: #fff;
    --gold: #ffd152; --gold2: #ffb326; --rim: #66bdff; --cyan: #36e6ff; --crimson: #ff6b5c;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--navy); color: var(--text);
         font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
         -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--rim); }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

  /* Nav */
  nav { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        background: #05081acc; border-bottom: 1px solid var(--line); }
  nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
  .brand { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none;
           font-weight: 900; letter-spacing: .12em; font-size: 15px; }
  .brand img { width: 32px; height: 32px; border-radius: 8px; }
  nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
  nav ul a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; }
  nav ul a:hover { color: var(--white); }

  /* Hero */
  .hero { position: relative; overflow: hidden;
          background: radial-gradient(ellipse at 70% 40%, #1d3a8a55, transparent 60%),
                      linear-gradient(180deg, #05081a00 60%, var(--navy)), url(/img/starfield.jpg) center/cover; }
  .hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-top: 72px; padding-bottom: 88px; }
  .kicker { color: var(--rim); font-weight: 700; letter-spacing: .18em; font-size: 13px; text-transform: uppercase; margin: 0 0 14px; }
  .logo { margin: 0; line-height: .9; font-weight: 900; letter-spacing: .04em;
          background: linear-gradient(180deg, #fff3b0 0%, var(--gold) 40%, var(--gold2) 100%);
          -webkit-background-clip: text; background-clip: text; color: transparent;
          filter: drop-shadow(0 4px 24px #ffb32655); }
  .logo .void { display: block; font-size: clamp(64px, 11vw, 132px); }
  .logo .asteroid { display: block; font-size: clamp(26px, 4.4vw, 52px); letter-spacing: .42em; margin-top: 10px; }
  .tagline { font-size: clamp(20px, 2.4vw, 26px); color: var(--white); font-weight: 700; margin: 28px 0 10px; }
  .lede { color: var(--text); max-width: 34em; margin: 0 0 30px; }
  .cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
          font-weight: 800; text-decoration: none; font-size: 16px; }
  .pill.gold { background: linear-gradient(180deg, #ffe07a, var(--gold2)); color: #2a1a00; box-shadow: 0 8px 28px #ffb32640; }
  .pill.ghost { border: 1px solid #66bdff66; color: var(--white); }
  .pill svg { width: 20px; height: 20px; }
  .note { color: var(--muted); font-size: 14px; margin-top: 14px; }

  /* Phone frames */
  .phone { position: relative; border-radius: 44px; padding: 10px; background: linear-gradient(160deg, #2a3350, #0b0f1f);
           box-shadow: 0 30px 80px #000c, 0 0 0 1px #ffffff14 inset; }
  .phone img { border-radius: 34px; width: 100%; height: auto; }
  .hero .wrap > *, .split > *, .screens > *, .grid > *, .roster > * { min-width: 0; }
  .hero .phone { width: 100%; max-width: 330px; justify-self: center; transform: rotate(2.5deg); animation: float 7s ease-in-out infinite; }
  @keyframes float { 50% { transform: rotate(2.5deg) translateY(-10px); } }
  @media (prefers-reduced-motion: reduce) { .hero .phone { animation: none; } html { scroll-behavior: auto; } }

  /* Stats strip */
  .stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0a1030aa; }
  .stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding-top: 26px; padding-bottom: 26px; }
  .stat b { display: block; color: var(--gold); font-size: 30px; font-weight: 900; line-height: 1.1; }
  .stat span { color: var(--muted); font-size: 14px; }

  section { padding: 96px 0; }
  h2 { color: var(--white); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; margin: 0 0 14px; font-weight: 900; }
  h2 em { font-style: normal; color: var(--gold); }
  .sub { color: var(--muted); max-width: 40em; margin: 0 0 44px; }

  /* Features */
  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .card { background: linear-gradient(180deg, var(--panel), #0b1130); border: 1px solid var(--line);
          border-radius: 20px; padding: 26px; }
  .card .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
                background: #66bdff1f; color: var(--cyan); }
  .card .icon svg { width: 24px; height: 24px; }
  .card h3 { color: var(--white); margin: 0 0 8px; font-size: 19px; }
  .card p { margin: 0; color: var(--text); font-size: 16px; }

  /* Roster */
  .roster { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .unit { border-radius: 18px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
  .unit img { aspect-ratio: 1; object-fit: cover; width: 100%; height: auto; }
  .unit div { padding: 14px 16px 18px; }
  .unit h3 { margin: 0; color: var(--white); font-size: 17px; }
  .unit p { margin: 4px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
  .more { color: var(--muted); margin-top: 22px; }

  /* Split feature */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .split img.art { border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 30px 80px #0009; }
  .modes { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
  .modes li { background: #0e1638; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
  .modes b { color: var(--white); }
  .modes .tag { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: #2a1a00; background: var(--gold);
                border-radius: 6px; padding: 2px 7px; margin-left: 6px; vertical-align: 2px; }

  /* Screens */
  .screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
  .screens figure { margin: 0; }
  .screens figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 14px; }

  /* Final CTA + footer */
  .final { text-align: center; background: radial-gradient(ellipse at 50% 0%, #1d3a8a66, transparent 65%); }
  .final .appicon { width: 112px; height: 112px; border-radius: 26px; margin: 0 auto 22px; box-shadow: 0 16px 50px #000a; }
  .final .cta { justify-content: center; }
  footer { border-top: 1px solid var(--line); padding: 34px 0 48px; color: var(--muted); font-size: 14px; }
  footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; }
  footer a { color: var(--muted); text-decoration: none; margin-right: 20px; }
  footer a:hover { color: var(--white); }

  @media (max-width: 900px) {
    nav ul { display: none; }
    .hero .wrap, .split { grid-template-columns: 1fr; }
    .hero .wrap { padding-top: 48px; text-align: left; }
    .hero .phone { max-width: 280px; }
    .grid { grid-template-columns: 1fr 1fr; }
    .roster { grid-template-columns: repeat(2, 1fr); }
    .stats .wrap { grid-template-columns: 1fr 1fr; gap: 18px; }
    .screens { grid-template-columns: 1fr 1fr; }
    section { padding: 72px 0; }
  }
  @media (max-width: 560px) {
    .grid, .screens { grid-template-columns: 1fr; }
    .screens figure { max-width: 300px; margin: 0 auto; }
  }

  /* ---------- Shared: document pages (privacy, support, 404) ---------- */
  .doc { padding: 56px 0 88px; background: radial-gradient(ellipse at 50% -10%, #1d3a8a44, transparent 55%); }
  .doc .wrap { max-width: 760px; }
  .doc h1 { color: var(--white); font-size: clamp(30px, 5vw, 44px); line-height: 1.1; margin: 0 0 8px; font-weight: 900; }
  .doc h1 em { font-style: normal; color: var(--gold); }
  .doc h2 { color: var(--gold); font-size: 20px; margin: 34px 0 8px; }
  .doc h3 { color: var(--white); font-size: 17px; margin: 22px 0 6px; }
  .doc p, .doc li { color: var(--text); }
  .doc ul { padding-left: 22px; }
  .doc .muted { color: var(--muted); font-size: 14px; }
  .doc .summary { border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; margin: 20px 0;
                  background: linear-gradient(180deg, var(--panel), #0b1130); }
  .doc table { border-collapse: collapse; width: 100%; font-size: 15px; margin: 8px 0 14px; }
  .doc th, .doc td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--line); }
  .doc th { color: var(--white); }

  /* ---------- Contact form ---------- */
  .form { background: linear-gradient(180deg, var(--panel), #0b1130); border: 1px solid var(--line);
          border-radius: 20px; padding: 24px; margin: 26px 0 10px; display: grid; gap: 16px; }
  .form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form label { display: grid; gap: 6px; color: var(--white); font-weight: 700; font-size: 15px; }
  .form label span.opt { color: var(--muted); font-weight: 500; }
  .form input, .form select, .form textarea {
    font: inherit; color: var(--white); background: #070b22; border: 1px solid #66bdff40; border-radius: 12px;
    padding: 12px 14px; width: 100%; }
  .form textarea { min-height: 150px; resize: vertical; }
  .form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--rim); outline-offset: 1px; }
  .form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
  .form button { justify-self: start; border: 0; cursor: pointer; }
  .form button[disabled] { opacity: .6; cursor: default; }
  .form .fine { color: var(--muted); font-size: 13px; margin: 0; }
  .status { border-radius: 14px; padding: 14px 16px; margin: 0; display: none; }
  .status.ok { display: block; background: #42e58420; border: 1px solid #42e58466; color: #c8ffd9; }
  .status.err { display: block; background: #ff6b5c20; border: 1px solid #ff6b5c66; color: #ffd3cd; }
  .faq h3 { margin-top: 18px; }
  @media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } .form { padding: 18px; } }
  /* No inline styles anywhere (strict CSP): the few one-offs live here. */
  section.flush { padding-top: 0; }
  .sub.tight { margin-bottom: 0; }
  .sub.centred { margin: 0 auto 28px; }
  .doc .centre { text-align: center; }
  .doc .company { margin-top: 36px; }
  .doc .summary p:last-child { margin-bottom: 0; }
  /* reCAPTCHA badge hidden; the required notice is shown under the form. */
  .grecaptcha-badge { visibility: hidden; }

