/* Shared by the landing page and the roadmap. Extracted from the landing
   template so a second page does not duplicate a hundred lines of it. */
:root {
      --accent:#2563eb; --accent-hover:#1d4ed8; --accent-soft:#eaf1fe;
      --bg:#f7f9fc; --band:#ffffff; --card:#ffffff; --card-translucent:rgba(247,249,252,0.8);
      --fg:#1f2933; --muted:#5b6675; --line:#e3e8ee;
      --hover-bg:#eef2f7; --bar:#eef2f7;
      --ok:#15803d; --ok-bg:rgba(21,128,61,0.1);
      --warn:#b45309; --warn-bg:rgba(180,83,9,0.1);
      --bad:#b91c1c; --bad-bg:rgba(185,28,28,0.1);
      --shadow:0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
      --shadow-lg:0 18px 44px -14px rgba(15,23,42,0.2);
    }
    html[data-theme="dark"] {
      --accent:#60a5fa; --accent-hover:#3b82f6; --accent-soft:rgba(96,165,250,0.14);
      --bg:#0e131a; --band:#121925; --card:#161d27; --card-translucent:rgba(14,19,26,0.8);
      --fg:#e5e9f0; --muted:#94a3b8; --line:#27313f;
      --hover-bg:#1e2733; --bar:#222c3a;
      --ok:#4ade80; --ok-bg:rgba(74,222,128,0.14);
      --warn:#fbbf24; --warn-bg:rgba(251,191,36,0.14);
      --bad:#f87171; --bad-bg:rgba(248,113,113,0.14);
      --shadow:0 1px 2px rgba(0,0,0,0.3);
      --shadow-lg:0 18px 44px -14px rgba(0,0,0,0.6);
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin:0; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
      background:var(--bg); color:var(--fg); font-size:16px;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
      transition:background .25s, color .25s;
    }
    @keyframes defactFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
    @keyframes defactPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

    .wrap { max-width:1140px; margin:0 auto; padding:0 24px; }

    .site-header { position:sticky; top:0; z-index:50; background:var(--card-translucent); backdrop-filter:saturate(140%) blur(12px); -webkit-backdrop-filter:saturate(140%) blur(12px); border-bottom:1px solid var(--line); }
    .site-header .bar { display:flex; align-items:center; gap:22px; padding:13px 24px; max-width:1140px; margin:0 auto; }
    .brand { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--fg); }
    .brand-badge { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:9px; background:var(--accent); color:#fff; font-weight:700; font-size:17px; letter-spacing:-0.5px; box-shadow:0 2px 8px rgba(37,99,235,0.35); }
    .brand-name { font-size:19px; font-weight:650; letter-spacing:-0.3px; }
    .nav { display:flex; align-items:center; gap:22px; }
    .nav a { color:var(--muted); text-decoration:none; font-size:14.5px; padding:6px 2px; transition:color .15s; }
    .nav a:hover { color:var(--fg); }
    .header-actions { margin-left:auto; display:flex; align-items:center; gap:10px; }
    .theme-btn { width:38px; height:38px; display:inline-flex; align-items:center; justify-content:center; border-radius:9px; border:1px solid var(--line); background:transparent; color:var(--fg); font-size:17px; cursor:pointer; transition:background .15s, border-color .15s; }
    .theme-btn:hover { background:var(--hover-bg); }

    .btn { display:inline-flex; align-items:center; justify-content:center; text-decoration:none; font-weight:550; font-size:14px; border-radius:9px; cursor:pointer; white-space:nowrap; padding:9px 16px; transition:background .15s, border-color .15s; }
    .btn-primary { background:var(--accent); color:#fff; border:1px solid var(--accent); }
    .btn-primary:hover { background:var(--accent-hover); }
    .btn-ghost { background:transparent; color:var(--fg); border:1px solid var(--line); }
    .btn-ghost:hover { background:var(--hover-bg); }

    .section { max-width:1140px; margin:0 auto; padding:70px 24px; }
    .band { background:var(--band); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
    h2.title { margin:0 0 6px; font-size:22px; font-weight:600; letter-spacing:-0.4px; }
    p.subtitle { margin:0 0 38px; font-size:15px; color:var(--muted); }

    /* hero */
    .hero { padding:72px 24px 64px; }
    .hero-grid { display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center; }
    .hero-text { text-align:left; }
    .eyebrow { display:inline-flex; align-items:center; gap:8px; padding:5px 12px; border-radius:999px; border:1px solid var(--line); background:var(--card); color:var(--muted); font-size:13px; font-weight:500; margin-bottom:22px; }
    .eyebrow .dot { width:7px; height:7px; border-radius:50%; background:var(--ok); }
    .hero h1 { margin:0 0 18px; font-size:30px; line-height:1.18; font-weight:600; letter-spacing:-0.6px; }
    .hero-lead { margin:0 0 30px; font-size:16.5px; line-height:1.62; color:var(--muted); max-width:540px; }
    .cta-row { display:flex; gap:12px; justify-content:flex-start; flex-wrap:wrap; }
    .hero-btn { display:inline-flex; align-items:center; justify-content:center; text-decoration:none; font-weight:600; font-size:15.5px; border-radius:10px; cursor:pointer; padding:13px 24px; transition:background .15s, border-color .15s; }
    .hero-primary { background:var(--accent); color:#fff; border:1px solid var(--accent); box-shadow:0 6px 18px -6px rgba(37,99,235,0.5); }
    .hero-primary:hover { background:var(--accent-hover); }
    .hero-ghost { background:var(--card); color:var(--fg); border:1px solid var(--line); }
    .hero-ghost:hover { background:var(--hover-bg); }
    .hero-note { margin:18px 0 0; font-size:13px; color:var(--muted); display:flex; align-items:center; gap:7px; }
    .hero-visual { display:flex; justify-content:center; }

    /* features */
    .feature-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(258px, 1fr)); gap:18px; }
    .feature-card { background:var(--card); border:1px solid var(--line); border-radius:10px; padding:22px; box-shadow:var(--shadow); transition:border-color .15s, box-shadow .15s, transform .15s; }
    .feature-card:hover { border-color:var(--accent); box-shadow:0 8px 22px -10px rgba(37,99,235,0.3); transform:translateY(-2px); }
    /* One stroked set, inline so nothing is fetched from a CDN and the colour
       follows the theme. Emoji used to stand in here: they render differently
       on every platform and read as a draft. */
    .feature-icon { width:42px; height:42px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center; background:var(--accent-soft); color:var(--accent); margin-bottom:15px; }
    .feature-icon svg, .contact-ic svg, .step-num svg { width:21px; height:21px; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
    .contact-ic svg { width:19px; height:19px; }
    .feature-card h3 { margin:0 0 7px; font-size:16.5px; font-weight:600; }
    .feature-card p { margin:0; font-size:14px; line-height:1.55; color:var(--muted); }

    /* how it works */
    .steps { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; counter-reset:step; }
    .step { position:relative; padding-top:6px; }
    .step-num { width:34px; height:34px; border-radius:50%; background:var(--accent); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:15px; font-weight:650; margin-bottom:14px; }
    .step h3 { margin:0 0 7px; font-size:15.5px; font-weight:600; }
    .step p { margin:0; font-size:14px; line-height:1.55; color:var(--muted); }
    @media (max-width:900px) { .steps { grid-template-columns:1fr 1fr; gap:26px 20px; } }
    @media (max-width:560px) { .steps { grid-template-columns:1fr; } }

    /* trust */
    .trust-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:18px; margin-bottom:26px; }
    .trust-item h3 { margin:0 0 6px; font-size:15.5px; font-weight:600; }
    .trust-item p { margin:0; font-size:14px; line-height:1.55; color:var(--muted); }

    /* timeline */
    .timeline { position:relative; padding-left:4px; }
    .timeline .spine { position:absolute; left:9px; top:8px; bottom:8px; width:2px; background:var(--line); }
    .tl-item { position:relative; padding-left:38px; padding-bottom:28px; }
    .tl-dot { position:absolute; left:0; top:3px; width:20px; height:20px; border-radius:50%; background:var(--card); display:inline-flex; align-items:center; justify-content:center; font-size:10px; z-index:1; }
    .tl-head { display:flex; align-items:center; gap:10px; margin-bottom:8px; flex-wrap:wrap; }
    .tl-head h3 { margin:0; font-size:16px; font-weight:600; }
    .tl-item ul { margin:0; padding-left:18px; color:var(--muted); font-size:14px; line-height:1.7; }
    .pill { display:inline-flex; align-items:center; gap:6px; padding:3px 11px; border-radius:999px; font-size:12.5px; font-weight:600; }
    .pill-ok { background:var(--ok-bg); color:var(--ok); }
    .pill-warn { background:var(--warn-bg); color:var(--warn); }

    /* contacts */
    .contacts-card { background:var(--card); border:1px solid var(--line); border-radius:10px; box-shadow:var(--shadow); padding:8px 24px; max-width:560px; }
    .contact-row { display:flex; align-items:center; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); }
    .contact-row:last-child { border-bottom:0; }
    .contact-ic { width:40px; height:40px; border-radius:9px; background:var(--accent-soft); display:inline-flex; align-items:center; justify-content:center; font-size:18px; }
    .contact-label { font-size:12.5px; color:var(--muted); margin-bottom:2px; }
    .contact-val { font-size:15.5px; font-weight:550; }

    /* footer */
    .site-footer { border-top:1px solid var(--line); background:var(--bg); }
    .site-footer .bar { max-width:1140px; margin:0 auto; padding:26px 24px; display:flex; align-items:center; gap:18px 22px; flex-wrap:wrap; font-size:13px; color:var(--muted); }
    .site-footer a { color:var(--muted); text-decoration:none; }
    .site-footer a:hover { color:var(--accent); }
    .foot-badge { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:6px; background:var(--accent); color:#fff; font-weight:700; font-size:12px; }

    @media (max-width:900px) {
      .nav { display:none; }
      .hero-grid { grid-template-columns:1fr; gap:48px; }
      .hero-text { text-align:center; max-width:620px; margin:0 auto; }
      .hero-lead { margin-left:auto; margin-right:auto; }
      .hero-visual { order:-1; }
      .cta-row { justify-content:center; }
    }
    @media (max-width:760px) {
      .cta-row { flex-direction:column; }
      .hero-primary, .hero-ghost { width:100%; }
    }
