/* Verinomi tools design system (shared with tools.verinomi.com) */
:root {
  --bg: #f6f8fc; --bg-2: #eef2f9; --surface: #ffffff; --surface-2: #f8fafd;
  --text: #0f1b2d; --muted: #56657c; --faint: #8a97ab; --line: #e3e8f1; --line-2: #d6dde9;
  --brand: #1a4f8a; --brand-2: #2596d1; --accent: #16b3a0; --accent-2: #f5b400;
  --chip: #edf3fb; --code: #0f1b2d; --code-text: #d7e3f4; --code-dim: #7d8ea8;
  --ok: #16a34a; --warn: #d97706; --bad: #dc2626;
  --shadow: 0 1px 2px rgba(15,27,45,.04), 0 12px 32px -16px rgba(15,27,45,.18);
  --hero-a: #e6eefb; --hero-b: #f6f8fc; --glow: rgba(37,150,209,.18);
  --radius: 16px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #0a1224; --bg-2: #0d1830; --surface: #111c33; --surface-2: #0e182c;
  --text: #e8eef8; --muted: #9fb0c8; --faint: #6f819c; --line: #1e2c47; --line-2: #2a3b5c;
  --brand: #5aa9ea; --brand-2: #7cc5f2; --accent: #2dd4bf; --accent-2: #fbbf24;
  --chip: #16233e; --code: #070d1a; --code-text: #d7e3f4; --code-dim: #6f819c;
  --ok: #4ade80; --warn: #fbbf24; --bad: #f87171;
  --shadow: 0 1px 2px rgba(0,0,0,.35), 0 16px 40px -20px rgba(0,0,0,.7);
  --hero-a: #0f2244; --hero-b: #0a1224; --glow: rgba(90,169,234,.22);
  color-scheme: dark;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: background-color .25s, color .25s;
}
a { color: inherit; }
code { font: .9em var(--mono); background: var(--chip); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; }

/* Top bar */
.top { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
       background: color-mix(in srgb, var(--bg) 78%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.brand img { height: 30px; width: auto; display: block; }
.brand .tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
              border-left: 1px solid var(--line-2); padding-left: 10px; white-space: nowrap; }
.topnav { display: none; gap: 22px; font-size: 14px; font-weight: 600; }
.topnav a { text-decoration: none; color: var(--muted); }
.topnav a:hover { color: var(--text); }
@media (min-width: 900px) { .topnav { display: flex; } }
.controls { display: flex; gap: 8px; }
@media (max-width: 420px) { .brand .tag { display: none; } }
.ctl { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; border-radius: 999px; cursor: pointer;
       border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font: 600 13px/1 inherit; }
.ctl:hover { border-color: var(--brand-2); }
.ctl svg { width: 16px; height: 16px; }
.ctl .sun { display: none; } :root[data-theme="dark"] .ctl .sun { display: block; } :root[data-theme="dark"] .ctl .moon { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
        background: radial-gradient(1200px 500px at 15% -10%, var(--hero-a), transparent 60%),
                    radial-gradient(900px 500px at 100% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%), var(--hero-b); }
.hero .wrap { position: relative; display: grid; gap: 36px; grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 80px; align-items: center; }
@media (min-width: 940px) { .hero .wrap { grid-template-columns: 1.2fr 1fr; padding-top: 80px; padding-bottom: 104px; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--brand);
           background: var(--chip); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 60%, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.05; letter-spacing: -.035em; margin: 18px 0 16px; font-weight: 800; }
.grad { background: linear-gradient(100deg, var(--brand) 10%, var(--brand-2) 45%, var(--accent) 90%);
        -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); max-width: 600px; margin: 0 0 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 20px; border-radius: 12px; font: 700 15px/1 inherit;
       text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s, border-color .15s, opacity .15s; }
.btn svg { width: 18px; height: 18px; }
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 24px -10px var(--brand); }
:root[data-theme="dark"] .btn-primary { color: #06101f; }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--text); }
.btn-stop { background: var(--surface); border-color: color-mix(in srgb, var(--bad) 55%, var(--line-2)); color: var(--bad); }

/* Hero demo card */
.demo { background: color-mix(in srgb, var(--surface) 88%, transparent); border: 1px solid var(--line); border-radius: 20px; padding: 22px;
        box-shadow: var(--shadow), 0 0 80px -30px var(--glow); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); min-width: 0; }
.demo-head { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 10px; align-items: center; }
.demo-box { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; min-width: 0; }
.demo-box b { display: block; font: 600 13px/1.3 var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.demo-arrow { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff;
              background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
:root[data-theme="dark"] .demo-arrow { color: #06101f; }
.demo-arrow svg { width: 18px; height: 18px; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(3px); } }
.demo-list { list-style: none; margin: 18px 0 14px; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.demo-list li { display: grid; grid-template-columns: 1fr auto 18px; gap: 12px; align-items: center; padding: 8px 2px; border-bottom: 1px dashed var(--line); }
.demo-list li:last-child { border-bottom: 0; }
.demo-n { font: 600 13px var(--mono); color: var(--muted); font-variant-numeric: tabular-nums; }
.demo-list i { display: block; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line-2); }
.demo-list i.ok { border: 0; background: color-mix(in srgb, var(--accent) 20%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316b3a0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center/11px no-repeat; }
.demo-list i.run { border-color: var(--brand-2); border-right-color: transparent; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-bar { height: 8px; border-radius: 99px; background: var(--bg-2); overflow: hidden; }
.demo-bar i { display: block; height: 100%; width: 68%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
              animation: grow 6s ease-in-out infinite alternate; }
@keyframes grow { from { width: 56%; } to { width: 74%; } }
.demo-foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.demo-live { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line);
         border-radius: var(--radius); overflow: hidden; margin: -38px auto 0; position: relative; z-index: 2; box-shadow: var(--shadow); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .stats { grid-template-columns: repeat(6, 1fr); } }
.stat { background: var(--surface); padding: 18px 16px; min-width: 0; }
.stat b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat > span { font-size: 13px; color: var(--muted); }

/* Sections */
section.block { padding: 72px 0 8px; }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.sec-head h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -.025em; margin: 0; line-height: 1.1; }
.sec-head p { margin: 6px 0 0; color: var(--muted); max-width: 640px; }
.legend { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); flex: 0 0 auto; display: inline-block; }
.dot.live, .demo-live .dot, .dot[data-s="ok"] { background: var(--ok); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent); }
.dot.down { background: var(--bad); box-shadow: none; }
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 6px; padding: 2px 7px;
         background: color-mix(in srgb, var(--accent-2) 20%, transparent); color: color-mix(in srgb, var(--accent-2) 60%, var(--text)); margin-left: 6px; vertical-align: 2px; }
.hint { font-size: 13px; color: var(--faint); margin: 8px 0 0; }

/* Tool form */
.tool { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 22px; }
@media (min-width: 760px) { .tool { padding: 28px; } }
.accounts { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; }
@media (min-width: 860px) { .accounts { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 18px; } }
.acc { border: 1px solid var(--line); background: var(--surface-2); border-radius: var(--radius); padding: 18px; margin: 0; min-width: 0; }
.acc legend { float: left; width: 100%; display: flex; align-items: center; gap: 10px; padding: 0 0 6px; margin: 0; border-bottom: 1px solid var(--line); }
.acc legend + * { clear: both; }
.acc legend b { display: block; font-size: 16px; line-height: 1.2; }
.acc legend small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; }
.num { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font: 800 13px/1 inherit; color: #fff;
       background: linear-gradient(135deg, var(--brand), var(--brand-2)); flex: 0 0 auto; }
:root[data-theme="dark"] .num { color: #06101f; }
.swap { justify-self: center; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
        border: 1px solid var(--line-2); background: var(--surface); color: var(--brand); box-shadow: var(--shadow); transition: transform .2s; }
.swap:hover { transform: rotate(180deg); border-color: var(--brand-2); }
.swap svg { width: 20px; height: 20px; }
@media (max-width: 859px) { .swap svg { transform: rotate(90deg); } }

label { display: block; margin: 12px 0 0; font-size: 14px; font-weight: 600; }
label small { font-weight: 400; color: var(--faint); }
input:not([type=checkbox]) {
  display: block; width: 100%; margin-top: 6px; height: 44px; padding: 0 13px;
  font: 15px/1 inherit; color: var(--text); background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}
input[name^=host], input[name^=user], input[name=extra] { font-family: var(--mono); font-size: 14px; }
input:not([type=checkbox]):focus { outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-2) 22%, transparent); }
input::placeholder { color: var(--faint); }
.pw { display: flex; gap: 6px; }
.pw input { flex: 1; min-width: 0; }
.ghost { margin-top: 6px; height: 44px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface);
         color: var(--muted); font: 600 13px/1 inherit; cursor: pointer; }
.ghost:hover { color: var(--text); border-color: var(--brand-2); }

/* Microsoft sign-in */
.ms { margin-top: 14px; }
.ms-login { display: inline-flex; align-items: center; gap: 12px; height: 44px; padding: 0 16px; border-radius: 10px; cursor: pointer;
            border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font: 600 15px/1 inherit; }
.ms-login:hover { border-color: var(--brand-2); }
.ms-logo { width: 18px; height: 18px; flex-shrink: 0;
  background: linear-gradient(#f25022,#f25022) 0 0 / 8px 8px no-repeat, linear-gradient(#7fba00,#7fba00) 10px 0 / 8px 8px no-repeat,
              linear-gradient(#00a4ef,#00a4ef) 0 10px / 8px 8px no-repeat, linear-gradient(#ffb900,#ffb900) 10px 10px / 8px 8px no-repeat; }
.ms-status { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.ms.signed .ms-status { color: var(--ok); font-weight: 600; }

/* Options */
.opts { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
@media (min-width: 860px) { .opts { grid-template-columns: 1fr 1fr; gap: 18px; } }
.opt-group { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; min-width: 0; }
.opt-group h4 { margin: 0 0 4px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.check { display: flex; gap: 11px; align-items: flex-start; font-weight: 400; margin-top: 12px; cursor: pointer; }
.check input { margin: 3px 0 0; width: 17px; height: 17px; accent-color: var(--brand); flex: 0 0 auto; }
.check b { display: block; font-weight: 600; font-size: 14.5px; }
.check small { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; }
.check.danger input { accent-color: var(--bad); }
.check.danger b { color: var(--bad); }
.adv { margin-top: 14px; border-top: 1px dashed var(--line-2); padding-top: 12px; }
.adv summary { cursor: pointer; font-weight: 600; font-size: 14px; color: var(--brand); }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.actions .note { margin: 0 0 0 6px; font-size: 13px; color: var(--faint); flex: 1 1 260px; }
#message { margin: 0; flex-basis: 100%; font-weight: 600; font-size: 14px; }
#message:empty { display: none; }
#message.error { color: var(--bad); }

/* Run panel */
.run { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 22px; }
@media (min-width: 760px) { .run { padding: 28px; } }
.run-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.run h3 { margin: 0; font-size: 20px; }
.host { font: 13px/1.4 var(--mono); color: var(--brand); overflow-wrap: anywhere; margin: 4px 0 0; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); flex: 0 0 auto;
          background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; white-space: nowrap; }
.status[data-s="run"] { color: var(--brand); }
.status[data-s="run"] .dot { background: var(--brand-2); animation: pulse 2s infinite; }
.status[data-s="ok"] { color: var(--ok); } .status[data-s="ok"] .dot { background: var(--ok); }
.status[data-s="bad"] { color: var(--bad); } .status[data-s="bad"] .dot { background: var(--bad); }
.progress { height: 10px; background: var(--bg-2); border-radius: 999px; overflow: hidden; margin: 18px 0 8px; }
.bar { height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent)); transition: width .6s ease; }
.bar.done { background: var(--ok); }
.bar.fail { background: var(--bad); }
.eta { margin: 0 0 16px; font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; }
.term { background: var(--code); border: 1px solid color-mix(in srgb, var(--line) 50%, #000); border-radius: 12px; overflow: hidden; }
.term-head { display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; font-size: 12px; font-weight: 600;
             color: var(--code-dim); border-bottom: 1px solid rgba(255,255,255,.07); letter-spacing: .04em; }
.follow { margin: 0; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; cursor: pointer; }
.follow input { accent-color: var(--accent); }
pre#log { margin: 0; height: 380px; overflow: auto; padding: 12px 14px; color: var(--code-text);
          font: 12.5px/1.55 var(--mono); white-space: pre-wrap; overflow-wrap: anywhere; }

/* How it works */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: s; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.step-n { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; color: var(--brand); background: var(--chip); }
.steps h3, .why h3 { margin: 14px 0 6px; font-size: 18px; letter-spacing: -.01em; }
.steps p, .why p { margin: 0; color: var(--muted); font-size: 15px; }
.tipbox { display: flex; gap: 18px; margin-top: 18px; padding: 22px; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
          background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, var(--surface)), var(--surface)); }
.tipbox h3 { margin: 4px 0 8px; font-size: 18px; }
.tipbox .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto;
              background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }
.tipbox .ic svg { width: 21px; height: 21px; }
.tiplist { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 4px; }

/* Providers */
.provs { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .provs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .provs { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.prov { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
        padding: 22px; box-shadow: var(--shadow); min-width: 0; transition: transform .2s, border-color .2s; }
.prov:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand-2) 50%, var(--line)); }
.prov-top h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.01em; }
.prov-top code { color: var(--brand); }
.feats { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; font-size: 14.5px; color: var(--muted); }
.feats li { position: relative; padding-left: 25px; }
.feats li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
                    background: color-mix(in srgb, var(--accent) 18%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316b3a0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center/11px no-repeat; }
.feats b { color: var(--text); }
.feats a { color: var(--brand); }
.go { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; text-decoration: none;
      font-weight: 700; font-size: 15px; color: var(--brand); border-top: 1px solid var(--line); }
.prov .feats + .go { margin-top: 18px; }
.go svg { width: 18px; height: 18px; transition: transform .2s; }
.prov:hover .go svg { transform: translateX(4px); }

/* Security */
.why { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.why .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--chip); color: var(--brand); }
.why .ic svg { width: 21px; height: 21px; }

/* Limits */
.netpanel { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 760px) { .netpanel { grid-template-columns: repeat(2, 1fr); } }
.netpanel > div { background: var(--surface); padding: 20px 22px; min-width: 0; }
.netpanel > .wide { grid-column: 1 / -1; }
.netpanel h4 { margin: 0 0 10px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; font-size: 14.5px; margin: 0; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.kv .dot { margin-right: 8px; vertical-align: 1px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; transition: border-color .2s; }
.faq details[open] { border-color: color-mix(in srgb, var(--brand-2) 45%, var(--line)); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 28px 16px 0; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 50%; width: 9px; height: 9px; margin-top: -7px;
                      border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq p { margin: 0 0 18px; color: var(--muted); }

/* More tools */
.more-block { padding-top: 64px !important; }
.more-title { margin: 0 0 12px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--muted); }
.more { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .more { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .more { grid-template-columns: repeat(3, 1fr); } }
.more a { display: flex; flex-direction: column; justify-content: center; min-height: 78px; padding: 12px 16px; text-decoration: none;
          background: var(--surface); border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, box-shadow .2s; }
.more a:hover { border-color: var(--brand-2); box-shadow: var(--shadow); }
.more a.all { background: var(--chip); }
.more b { color: var(--brand); }
.more span { font-size: 13px; color: var(--muted); }

footer { margin-top: 72px; border-top: 1px solid var(--line); padding: 26px 0 max(40px, env(safe-area-inset-bottom)); color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; }
footer a { color: var(--muted); }
footer nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* Popup result page */
.oauth-page { min-height: 100vh; display: grid; place-items: center; padding: 16px; }
.oauth-page .card { max-width: 440px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); text-align: center; }
.oauth-page h2 { margin: 12px 0 8px; }
.oauth-page p { color: var(--muted); margin: 0 0 20px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
