  :root {
    --ink: #12161B;
    --ink-raised: #1B222B;
    --ink-panel: #1F2731;
    --hair: #2A323D;
    --text: #EAEEF1;
    --text-dim: #8A9199;
    --accent: #4FA8A8;
    --accent-text: #0B1214;
    --lvl5: #4A9D6E;
    --lvl4: #6FA8DC;
    --lvl3: #D9A441;
    --lvl2: #D97F3D;
    --lvl1: #C0392B;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .display {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  a { color: inherit; }
  img, svg { display: block; max-width: 100%; }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  .wrap-narrow { max-width: 680px; margin: 0 auto; padding: 0 28px; }

  /* ---------- Nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(18,22,27,0.88); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hair);
  }
  nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .wordmark { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 0.01em; display: flex; align-items: center; gap: 10px; }
  .wordmark .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
  .navlinks { display: flex; gap: 32px; font-size: 15px; color: var(--text-dim); }
  .navlinks a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent); color: var(--accent-text); font-weight: 600; font-size: 14px;
    padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap;
  }
  @media (max-width: 720px) { .navlinks { display: none; } }

  /* ---------- Hero ---------- */
  .hero { padding: 84px 0 64px; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
  @media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
  .eyebrow { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(40px, 6vw, 62px); margin-bottom: 22px; }
  .hero p.lede { font-size: 19px; color: var(--text-dim); max-width: 480px; margin-bottom: 32px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: var(--accent-text); font-weight: 600; font-size: 15px;
    padding: 14px 26px; border-radius: 9px; text-decoration: none; display: inline-block;
  }
  .btn-secondary {
    background: transparent; color: var(--text); font-weight: 600; font-size: 15px;
    padding: 14px 26px; border-radius: 9px; text-decoration: none; display: inline-block;
    border: 1px solid var(--hair);
  }

  /* ---------- Level dial (hero visual) ---------- */
  .dial-card { background: var(--ink-raised); border: 1px solid var(--hair); border-radius: 18px; padding: 28px; }
  .dial-label { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; display: flex; justify-content: space-between; }
  .dial-rows { display: flex; flex-direction: column; gap: 10px; }
  .dial-row {
    display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px;
    background: var(--ink-panel); border: 1px solid transparent; opacity: 0.4; transition: opacity 0.5s, border-color 0.5s, background 0.5s;
  }
  .dial-row.active { opacity: 1; border-color: currentColor; background: color-mix(in srgb, currentColor 12%, var(--ink-panel)); }
  .dial-dot { width: 12px; height: 12px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
  .dial-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; width: 20px; }
  .dial-name { font-weight: 600; font-size: 15px; flex: 1; }
  .dial-note { font-size: 12px; color: var(--text-dim); }
  .r5 { color: var(--lvl5); } .r4 { color: var(--lvl4); } .r3 { color: var(--lvl3); } .r2 { color: var(--lvl2); } .r1 { color: var(--lvl1); }

  /* ---------- Section shell ---------- */
  section { padding: 88px 0; }
  section + section { border-top: 1px solid var(--hair); }
  .section-head { max-width: 620px; margin-bottom: 52px; }
  .section-head .eyebrow { margin-bottom: 12px; }
  .section-head h2 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 14px; }
  .section-head p { color: var(--text-dim); font-size: 17px; }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--hair); border-radius: 16px; overflow: hidden; }
  @media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
  .step { background: var(--ink); padding: 32px 28px; }
  .step .step-mark { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: var(--accent); margin-bottom: 14px; }
  .step h3 { font-size: 22px; margin-bottom: 10px; font-weight: 600; }
  .step p { color: var(--text-dim); font-size: 15px; }

  /* ---------- Features ---------- */
  .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border-radius: 16px; overflow: hidden; }
  @media (max-width: 780px) { .feature-grid { grid-template-columns: 1fr; } }
  .feature { background: var(--ink); padding: 30px 28px; }
  .feature h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
  .feature p { color: var(--text-dim); font-size: 15px; }

  /* ---------- Duress spotlight ---------- */
  .spotlight {
    background: linear-gradient(180deg, var(--ink-raised), var(--ink));
    border: 1px solid var(--hair); border-radius: 20px; padding: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  }
  @media (max-width: 780px) { .spotlight { grid-template-columns: 1fr; padding: 32px 24px; } }
  .spotlight h2 { font-size: 30px; margin-bottom: 14px; }
  .spotlight p { color: var(--text-dim); font-size: 16px; margin-bottom: 12px; }
  .decoy-demo { background: var(--ink-panel); border-radius: 14px; padding: 24px; border: 1px solid var(--hair); }
  .decoy-demo .face { font-size: 14px; color: var(--text-dim); margin-bottom: 6px; }
  .decoy-demo .what-they-see { font-size: 20px; font-weight: 600; color: var(--lvl5); margin-bottom: 22px; }
  .decoy-demo .divider { border-top: 1px dashed var(--hair); margin: 18px 0; }
  .decoy-demo .what-really-happens { font-size: 14px; color: var(--text-dim); margin-bottom: 6px; }
  .decoy-demo .real-status { font-size: 20px; font-weight: 600; color: var(--lvl2); }

  /* ---------- Privacy ---------- */
  .privacy-list { display: grid; gap: 18px; margin-top: 8px; }
  .privacy-item { display: flex; gap: 16px; align-items: flex-start; }
  .privacy-item .mark { color: var(--accent); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; flex-shrink: 0; width: 24px; }
  .privacy-item p { color: var(--text-dim); font-size: 15px; }
  .privacy-item strong { color: var(--text); font-weight: 600; }

  /* ---------- CTA band ---------- */
  .cta-band { background: var(--ink-raised); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 72px 0; text-align: left; }
  .cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
  .cta-band h2 { font-size: 34px; max-width: 480px; }

  /* ---------- Footer ---------- */
  footer { padding: 48px 0 60px; }
  footer .wrap { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
  footer .fcol { font-size: 14px; color: var(--text-dim); }
  footer .fcol a { display: block; margin-top: 8px; text-decoration: none; }
  footer .fcol a:hover { color: var(--text); }
  footer .wordmark { margin-bottom: 10px; }

  /* ---------- Multi-page additions ---------- */
  .lang-switch { display: flex; gap: 6px; font-size: 13px; font-weight: 600; margin-left: 8px; }
  .lang-switch a { color: var(--text-dim); text-decoration: none; padding: 4px 8px; border-radius: 6px; }
  .lang-switch a.active { color: var(--text); background: var(--ink-panel); }
  .navlinks a.current { color: var(--text); }

  .page-header { padding: 64px 0 56px; border-bottom: 1px solid var(--hair); }
  .page-header .eyebrow { margin-bottom: 14px; }
  .page-header h1 { font-size: clamp(34px, 5vw, 48px); margin-bottom: 16px; }
  .page-header p { color: var(--text-dim); font-size: 17px; max-width: 560px; }

  .about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
  @media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
  .about-grid p { color: var(--text-dim); font-size: 16px; margin-bottom: 18px; }
  .about-grid h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }

  .info-card { background: var(--ink-raised); border: 1px solid var(--hair); border-radius: 14px; padding: 26px; }
  .info-card + .info-card { margin-top: 16px; }
  .info-card .label { font-size: 12px; color: var(--text-dim); text-transform: none; margin-bottom: 6px; }
  .info-card .value { font-size: 16px; font-weight: 600; }
  .info-card a.value { text-decoration: none; color: var(--accent); }

  .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
  @media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-grid p { color: var(--text-dim); font-size: 16px; margin-bottom: 20px; }
