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

    :root {
      --g:   #00ff88;
      --g2:  #00cc66;
      --g3:  #008844;
      --g4:  #004422;
      --y:   #ffcc00;
      --c:   #00ddff;
      --r:   #ff4455;
      --w:   #d0ffe8;
      --bg:  #0a0f0a;
      --f:   'JetBrains Mono', 'Courier New', monospace;
      /* alignment tokens — matches tools.html */
      --bg-card:    #0c150c;
      --border:     #192619;
      --text-muted: #647564;
      --text-dim:   #3a4a3a;
      --border-accent: rgba(0, 255, 136, 0.18);
      --text:          #e2e8e2;
    }

    html, body {
      height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family: var(--f);
      font-size: 14px;
      overflow-y: auto;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 255, 136, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.028) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }

    #wrap {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 52px;
    }

    /* ── output ── */
    #out {
      padding: 0 0 48px;
    }

    /* ── lines ── */
    .L  { display: block; line-height: 1.8; white-space: pre-wrap; word-break: break-word; }
    .b  { height: 0.85em; }          /* blank */
    .d  { color: var(--g2); }         /* dim */
    .m  { color: var(--g3); }         /* muted */
    .bo { color: var(--text); font-weight:700; }
    .y  { color: var(--y); }
    .c  { color: var(--c); }
    .r  { color: var(--r); }
    .w  { color: var(--w); }
    .e  { color: var(--g3); }         /* echo */
    .h  { color: var(--text); font-weight:700; letter-spacing:.08em; }
    .lnk { text-decoration: none; cursor: pointer; }
    .lnk:hover { text-decoration: underline; color: var(--c); }

    /* ── clickable command rows ── */
    .CR {
      display: flex;
      line-height: 1.8;
      cursor: pointer;
      border-radius: 3px;
      transition: background .1s;
    }
    .CR:hover { background: rgba(0,255,136,.07); }
    .CR:focus-visible { outline: 1px solid var(--g3); background: rgba(0,255,136,.07); }
    .CK { color: var(--y); font-weight:700; min-width:120px; flex-shrink:0; padding-left:2px; }
    .CD { color: #8ecfaa; }

    /* ── input bar ── */
    #bar {
      display: flex;
      align-items: center;
      border-top: 2px solid var(--g);
      background: rgba(0,255,136,.04);
      padding: 11px 4px 15px;
      flex-shrink: 0;
      gap: 6px;
      cursor: text;
    }
    #bar:focus-within { background: rgba(0,255,136,.07); }

    #pfx {
      color: var(--g);
      font-weight: 700;
      user-select: none;
      flex-shrink: 0;
      white-space: nowrap;
      text-shadow: 0 0 8px #00ff8877;
    }

    #inp {
      flex: 1; min-width: 0;
      background: transparent; border: none; outline: none;
      color: var(--g); font-family: var(--f); font-size: 14px;
      caret-color: var(--g);
    }
    #inp::placeholder { color: var(--g3); font-style: italic; }


    /* ── animations ── */
    @keyframes fi { from{opacity:0;transform:translateY(3px)} to{opacity:1;transform:none} }
    @keyframes gl { 0%,100%{text-shadow:0 0 5px #00ff88,0 0 10px #00ff8844} 50%{text-shadow:0 0 14px #00ff88,0 0 28px #00ff8888} }
    .L  { animation: fi .1s ease-out both; }
    .GL { animation: gl 3.5s ease-in-out infinite, fi .15s ease-out both; color:var(--g); font-weight:700; font-size:1.6em; word-break:keep-all; overflow-wrap:normal; }

    @media (max-width:480px) {
      html,body { font-size:10px; }
      #wrap { padding:0 8px; }
      .CK { min-width:75px; }
      .CD { display:none; }
    }
    @media (min-width:481px) and (max-width:620px) {
      html,body { font-size:11px; }
      #wrap { padding:0 12px; }
      .CK { min-width:95px; }
    }
    @media (min-width:621px) and (max-width:860px) {
      html,body { font-size:12px; }
      #wrap { padding:0 18px; }
      .CK { min-width:110px; }
    }
    @media (min-width:861px) and (max-width:1100px) {
      html,body { font-size:13px; }
      #wrap { padding:0 24px; }
      .CK { min-width:120px; }
    }
    @media (min-width: 1101px) { html, body { font-size: 15px; } }
  .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

  /* ── logo bar ── */
  #logo-bar {
    flex-shrink: 0;
    padding: 12px 0 10px;
    border-bottom: 1px solid rgba(0,255,136,.10);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  #logo-wrapper {
    position: relative;
    height: 34px;
    display: inline-flex;
    align-items: center;
    isolation: isolate;
  }
  #logo-wrapper a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
  }
  #logo-wrapper::after {
    content: '';
    position: absolute; inset: 0;
    background: #00ff88;
    mix-blend-mode: color;
    pointer-events: none;
  }
  #logo-bar img {
    height: 34px;
    display: block;
    filter: grayscale(1) brightness(1.7) contrast(1.1) drop-shadow(0 0 8px rgba(0,255,136,.45));
    mix-blend-mode: screen;
  }
  @media (max-width:480px) {
    #logo-bar img { height: 26px; }
    #logo-bar { padding: 8px 0 7px; }
  }

  /* ── nav strip ── */
  #nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: visible;
    padding: 5px 0 6px;
    border-bottom: 1px solid rgba(0,255,136,.08);
  }
  .NV {
    color: var(--g3);
    font-size: 0.8em;
    padding: 2px 8px 2px 4px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .04em;
    transition: color .15s;
    flex-shrink: 0;
    border-radius: 2px;
    user-select: none;
  }
  .NV:hover { color: var(--g2); }
  .NV.active { color: var(--g); font-weight: 700; }
  .NV-sep { color: var(--g4); font-size: 0.8em; flex-shrink: 0; }
  #nav-home {
    margin-left: auto;
    padding-left: 12px;
    color: var(--g2);
    font-size: 0.8em;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
    transition: color .15s;
  }
  #nav-home:hover { color: var(--y); }

  /* ── Unified site nav ─────────────────────────────────────────────── */
  .site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 52px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .sn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--g);
  }
  .sn-mark {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    filter: grayscale(1) brightness(1.7) contrast(1.1) drop-shadow(0 0 8px rgba(0,255,136,.45));
    mix-blend-mode: screen;
  }
  .sn-dot { color: var(--text-muted); font-weight: 400; }
  .sn-right { display: flex; align-items: center; gap: 22px; }
  .sn-link {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .12s;
  }
  .sn-link:hover { color: var(--text); }
  .sn-sep { color: var(--border); font-size: 10px; }
  .sn-book {
    display: inline-block;
    border: 1px solid var(--g);
    color: var(--g);
    background: none;
    font-family: var(--f);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 18px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .12s, color .12s;
  }
  .sn-book:hover { background: var(--g); color: var(--bg); }
  .sn-lang {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--f);
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: .05em;
    transition: border-color .12s, color .12s;
  }
  .sn-lang:hover { border-color: var(--g); color: var(--g); }
  .sn-lang.active-tr { border-color: var(--c); color: var(--c); }
  @media (max-width: 640px) { .sn-link, .sn-sep { display: none; } }

  /* ── hero ── */
  #hero {
    padding: 48px 4px 40px;
    border-bottom: 1px solid rgba(0,255,136,.1);
    margin-bottom: 8px;
  }
  .hero-hl {
    font-size: 56px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 18px;
  }
  .hero-sub {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 28px;
  }
  .hero-cta {
    display: inline-block;
    border: 1px solid var(--g);
    color: var(--g);
    font-family: var(--f);
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 10px 22px;
    text-decoration: none;
    transition: background .15s;
    border-radius: 2px;
    cursor: pointer;
  }
  .hero-cta:hover { background: rgba(0,255,136,.12); }
  .hero-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
  }
  .proof-q {
    color: var(--text-muted);
    font-size: 0.8em;
    line-height: 1.6;
  }

  /* ── accordion ── */
  .ACC-item {
    border-bottom: 1px solid rgba(0,255,136,.08);
  }
  .ACC-hd {
    display: flex;
    align-items: center;
    padding: 16px 4px;
    cursor: pointer;
    gap: 16px;
    transition: background .1s;
    border-radius: 2px;
    text-decoration: none;
    color: inherit;
  }
  .ACC-hd:hover { background: rgba(0,255,136,.05); }
  .ACC-hd:focus-visible { outline: 1px solid var(--g3); }
  .ACC-label {
    color: var(--text);
    font-weight: 700;
    min-width: 130px;
    flex-shrink: 0;
    letter-spacing: .04em;
  }
  .ACC-desc {
    color: var(--text-muted);
    font-size: 0.82em;
    flex: 1;
  }
  .ACC-chevron {
    color: var(--text-muted);
    font-size: 0.75em;
    flex-shrink: 0;
    transition: transform .2s, color .2s;
    user-select: none;
  }
  .ACC-item.open .ACC-chevron {
    transform: rotate(90deg);
    color: var(--g);
  }
  .ACC-body {
    display: none;
    padding: 0 4px 20px;
  }
  .ACC-item.open .ACC-body {
    display: block;
  }

  @media (max-width:480px) {
    .ACC-desc { display: none; }
    .ACC-label { min-width: 0; }
    .hero-hl { font-size: 2em; }
  }

  /* ── brand name ── */
  #brand-name {
    font-size: 1.0em;
    font-weight: 700;
    color: var(--g);
    letter-spacing: .08em;
    text-transform: uppercase;
    user-select: none;
  }
  #brand-name .brand-dot { color: var(--text-muted); font-weight: 400; }
  @media (max-width:480px) { #brand-name { font-size: 0.8em; letter-spacing: .08em; } }
  a#brand-name { text-decoration: none; color: var(--g); }
  a#brand-name:hover { color: var(--g2); }

  /* ── logo-bar Book a call button ── */
  #logo-cta {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--g);
    color: var(--g);
    font-family: var(--f);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 5px 14px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 2px;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  #logo-cta:hover { background: rgba(0,255,136,.10); }
  @media (max-width: 480px) { #logo-cta { display: none; } }

  /* ── footer ── */
  #footer {
    flex-shrink: 0;
    padding: 16px 4px 28px;
    border-top: 1px solid rgba(0,255,136,.06);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-legal, .footer-back {
    color: var(--g3);
    font-size: 0.75em;
    text-decoration: none;
    transition: color .15s;
    letter-spacing: .04em;
  }
  .footer-legal:hover, .footer-back:hover { color: var(--g2); }
  .footer-sep { color: var(--g4); font-size: 0.75em; }
  .footer-ph { margin-left: auto; opacity: 0.85; transition: opacity .15s; display: flex; align-items: center; }
  .footer-ph:hover { opacity: 1; }

  /* ── nav dropdown ── */
  .NV-more {
    margin-left: auto;
    padding-left: 12px;
    color: var(--g2);
    font-size: 0.8em;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
    transition: color .15s;
    position: relative;
  }
  .NV-more:hover { color: var(--g); }
  .NV-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #0a1f12;
    border: 1px solid var(--g4);
    min-width: 200px;
    z-index: 100;
    border-radius: 2px;
    padding: 4px 0;
  }
  .NV-more.open .NV-dropdown { display: block; }
  .NV-dd-item {
    display: block;
    padding: 7px 14px;
    color: var(--g3);
    font-size: 0.8em;
    text-decoration: none;
    transition: background .1s, color .1s;
    white-space: nowrap;
    font-family: var(--f);
  }
  .NV-dd-item:hover { background: rgba(0,255,136,.07); color: var(--g2); }


  /* ── testimonials ── */
  .testi {
    padding: 36px 4px 40px;
    border-bottom: 1px solid rgba(0,255,136,.1);
    margin-bottom: 8px;
  }
  .testi-h {
    color: var(--g);
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 0.82em;
    margin-bottom: 22px;
  }
  .testi-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 780px;
    border: 1px solid var(--border-accent);
    border-radius: 4px;
    padding: 20px;
    background: rgba(0,255,136,.03);
  }
  .testi-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0,255,136,.25);
  }
  .testi-body { display: flex; flex-direction: column; gap: 10px; }
  .testi-q {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.92em;
  }
  .testi-meta {
    color: var(--g2);
    font-size: 0.82em;
    font-weight: 700;
  }
  .testi-meta a { color: inherit; text-decoration: none; transition: color .15s; }
  .testi-meta a:hover { color: var(--c); text-decoration: underline; }
  @media (max-width: 560px) {
    .testi-card { flex-direction: column; gap: 14px; }
  }
