[hidden] { display: none !important; }
:root {
  --bg: #f3f5f7; --panel: #ffffff; --ink: #14212b; --muted: #5a6a77; --line: #e1e7ec; --soft: #f7f9fb;
  --brand: #0b5d46; --brand-2: #0f7a5b; --brand-ink: #ffffff;
  --ok: #157a4d; --ok-bg: #e4f5ec; --warn: #9a5b00; --warn-bg: #fdf1dc; --bad: #b83232; --bad-bg: #fbe6e6; --info: #2c56b3; --info-bg: #e7eefb;
  --nic: #4f52d6; --momrah: #0d8a8c; --tawakkalna: #d17a1f; --fail: #d64545;
  --shadow: 0 1px 2px rgba(20, 33, 43, .06), 0 4px 14px rgba(20, 33, 43, .05);
  --font: "Segoe UI", system-ui, -apple-system, "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d151b; --panel: #142029; --ink: #e5edf2; --muted: #93a3af; --line: #24343f; --soft: #101b23;
    --brand: #1f9d77; --brand-2: #27b389; --brand-ink: #062b20;
    --ok: #5ad19a; --ok-bg: #12352a; --warn: #f0b25a; --warn-bg: #3a2a10; --bad: #ff8a8a; --bad-bg: #3d1a1a; --info: #8db1ff; --info-bg: #1a2a4a;
    --nic: #8a8dff; --momrah: #3cc6c8; --tawakkalna: #f2a04d; --fail: #ff6b6b; --shadow: none;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--bg); color: var(--ink); font: 14px/1.5 var(--font); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
h1 { font-size: 22px; } h2 { font-size: 18px; } h3 { font-size: 15px; margin-bottom: 10px; } h4 { font-size: 13px; margin: 16px 0 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
p { margin: 0 0 8px; }
a { color: inherit; }
code, .mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: .92em; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.muted { color: var(--muted); } .small { font-size: 12px; } .nowrap { white-space: nowrap; } .r { text-align: end; } .c { text-align: center; }
.ok { color: var(--ok); } .warn { color: var(--warn); } .bad { color: var(--bad); }
:focus-visible { outline: 3px solid var(--info); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout */
.shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 100vh; }
.side { background: var(--panel); border-inline-end: 1px solid var(--line); padding: 18px 14px; display: flex; flex-direction: column; gap: 18px; position: sticky; top: 0; height: 100vh; }
.brand { display: flex; gap: 10px; align-items: center; padding: 0 6px; }
.brand b { display: block; font-size: 15px; } .brand small { color: var(--muted); font-size: 12px; }
.logo { width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; }
.logo.sm { width: 36px; height: 36px; border-radius: 10px; } .logo .ico { width: 22px; height: 22px; }
nav { display: flex; flex-direction: column; gap: 2px; }
nav a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 9px; text-decoration: none; color: var(--muted); font-weight: 500; }
nav a:hover { background: var(--soft); color: var(--ink); }
nav a.active { background: var(--brand); color: #fff; }
.ico { width: 18px; height: 18px; flex: none; }
.side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.who { display: flex; gap: 10px; align-items: center; } .who b { display: block; font-size: 13px; } .who small { color: var(--muted); font-size: 12px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--info-bg); color: var(--info); display: grid; place-items: center; font-weight: 700; }
.hostnote { color: var(--muted); display: flex; align-items: center; gap: 6px; font-size: 11.5px; } .hostnote .ico { width: 13px; height: 13px; }
main#page { padding: 24px 28px 48px; max-width: 1280px; width: 100%; outline: none; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.sub { color: var(--muted); margin: 4px 0 0; max-width: 70ch; }
.filters, .toolbar, .row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.toolbar { margin-bottom: 12px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow); margin-bottom: 16px; min-width: 0; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } .grid2 .card { margin: 0; }
.foot { color: var(--muted); font-size: 12px; margin-top: 16px; }

/* ---------- controls */
.btn { font: inherit; font-weight: 600; padding: 8px 14px; border-radius: 9px; border: 1px solid var(--line); background: var(--panel); color: var(--ink); cursor: pointer; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.btn:hover:not(:disabled) { border-color: var(--brand); }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn.primary:hover:not(:disabled) { background: var(--brand-2); }
.btn.sm { padding: 4px 10px; font-size: 12.5px; }
.btn.on { background: var(--info-bg); border-color: var(--info); color: var(--info); }
.btn.danger { color: var(--bad); }
.btn.wide { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.link { background: none; border: 0; padding: 0; color: var(--info); cursor: pointer; font: inherit; text-decoration: underline; }
select, input { font: inherit; color: var(--ink); background: var(--panel); border: 1px solid var(--line); border-radius: 9px; padding: 7px 10px; }
input[type=search] { min-width: 200px; }
label { display: flex; flex-direction: column; gap: 5px; font-weight: 600; font-size: 13px; margin-bottom: 12px; }
label input { width: 100%; }
label.sel { margin: 0; flex-direction: row; }
.note { display: flex; gap: 8px; align-items: center; padding: 10px 14px; border-radius: 10px; background: var(--info-bg); color: var(--info); margin-bottom: 14px; font-size: 13px; }
.note.okn { background: var(--ok-bg); color: var(--ok); } .note.badn { background: var(--bad-bg); color: var(--bad); }
.note .ico { width: 15px; height: 15px; }

/* ---------- pills, chips */
.pill { display: inline-block; padding: 1px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill.ok { background: var(--ok-bg); color: var(--ok); } .pill.warn { background: var(--warn-bg); color: var(--warn); } .pill.bad { background: var(--bad-bg); color: var(--bad); }
.pill.sbx { background: var(--info-bg); color: var(--info); } .pill.prod { background: var(--ok-bg); color: var(--ok); outline: 1px solid var(--ok); } .pill.muted { background: var(--soft); color: var(--muted); border: 1px solid var(--line); }
.chip { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; margin-inline-end: 10px; white-space: nowrap; }
.dot, .tdot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.dot.c-nic, .tdot.c-nic { background: var(--nic); } .dot.c-momrah, .tdot.c-momrah { background: var(--momrah); } .dot.c-tawakkalna, .tdot.c-tawakkalna { background: var(--tawakkalna); } .dot.c-fail { background: var(--fail); }
.tag { display: inline-block; background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 0 7px; font-size: 12px; margin: 1px 4px 1px 0; }
.trace { display: inline-flex; gap: 4px; } .tdot.bad { outline: 2px solid var(--bad); outline-offset: 1px; } .tdot.warn { outline: 2px dashed var(--warn); outline-offset: 1px; }

/* ---------- KPI + platform cards */
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 12px; margin-bottom: 16px; }
.kpi { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow); }
.kpi span { color: var(--muted); font-size: 12.5px; display: block; } .kpi b { font-size: 26px; display: block; line-height: 1.2; margin: 2px 0; } .kpi small { color: var(--muted); font-size: 12px; }
.plat-grid, .conn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; margin-bottom: 16px; }
.conn-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.plat header, .conn header { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; } .plat h3, .conn h3 { margin: 0; }
.stack { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.big { font-size: 34px; font-weight: 700; line-height: 1.1; } .big small { font-size: 12px; font-weight: 500; color: var(--muted); margin-inline-start: 8px; }
.mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 8px 0 0; } .mini dt { font-size: 11px; color: var(--muted); } .mini dd { margin: 0; font-weight: 600; font-size: 13px; }
.legend { margin-bottom: 6px; font-size: 12.5px; }
.alerts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; } .alerts li { display: flex; gap: 10px; align-items: flex-start; } .alerts span { display: block; color: var(--muted); font-size: 12.5px; }
.okc { color: var(--ok); vertical-align: -3px; }

/* ---------- charts */
svg { max-width: 100%; }
.chart, .hbars, .flowsvg { width: 100%; height: auto; display: block; direction: ltr; }
.grid { stroke: var(--line); stroke-width: 1; } .axis { fill: var(--muted); font-size: 10.5px; } .lbl, .val { fill: var(--ink); font-size: 12.5px; } .val { fill: var(--muted); }
.c-nic { fill: var(--nic); } .c-momrah { fill: var(--momrah); } .c-tawakkalna { fill: var(--tawakkalna); } .c-brand { fill: var(--brand); } .c-fail { fill: var(--fail); }
.s-nic { stroke: var(--nic); } .s-momrah { stroke: var(--momrah); } .s-tawakkalna { stroke: var(--tawakkalna); } .s-brand { stroke: var(--brand); }
.ln { stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.spark { display: block; margin: 4px 0; width: 100%; height: 40px; } .spark .area { opacity: .16; stroke: none; } .spark .line { stroke-width: 1.8; }
.bar .bg { fill: var(--line); }

/* ---------- data-flow diagram */
.boundary { fill: none; stroke: var(--brand); stroke-width: 1.5; stroke-dasharray: 7 6; opacity: .7; }
.blab { fill: var(--brand); font-size: 12px; font-weight: 600; }
.node { fill: var(--panel); stroke: var(--line); stroke-width: 1.5; } .node.gw { fill: var(--brand); stroke: none; }
.node.plat-nic { fill: var(--nic); stroke: none; } .node.plat-momrah { fill: var(--momrah); stroke: none; } .node.plat-tawakkalna { fill: var(--tawakkalna); stroke: none; }
.nt { fill: var(--ink); font-size: 15px; font-weight: 700; } .ns { fill: var(--muted); font-size: 12px; } .inv { fill: #fff; }
.node.plat-nic ~ .inv { fill: #fff; }
.edge { stroke-linecap: round; opacity: .28; } .edge.flow { opacity: .9; stroke-dasharray: 5 11; }
@media (prefers-reduced-motion: no-preference) { .edge.flow { animation: dash 1.1s linear infinite; } }
@keyframes dash { to { stroke-dashoffset: -16; } }
.elab { fill: var(--ink); font-size: 11.5px; font-weight: 600; paint-order: stroke; stroke: var(--panel); stroke-width: 4px; }

/* ---------- tables */
.tablewrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: start; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; padding: 8px 10px; border-bottom: 1px solid var(--line); white-space: nowrap; }
th.r { text-align: end; } th.c { text-align: center; }
td { padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
tr:last-child td { border-bottom: 0; }
tr.click { cursor: pointer; } tr.click:hover td { background: var(--soft); }
tr.off td { opacity: .55; }
td.ops { max-width: 340px; }
td.actions { white-space: nowrap; text-align: end; } td.actions .btn { margin-inline-start: 4px; }
.rolesel { padding: 4px 8px; }
.matrix .yes { color: var(--ok); } .matrix .no { color: var(--muted); }
.audit td { font-size: 12.5px; } .clauses td:nth-child(3) { max-width: 520px; }

/* ---------- key/value lists, steps */
.kv { margin: 0; display: grid; gap: 6px; } .kv > div { display: grid; grid-template-columns: 160px 1fr; gap: 10px; } .kv dt { color: var(--muted); font-size: 12.5px; } .kv dd { margin: 0; word-break: break-word; }
.kv.tight { gap: 4px; margin-bottom: 12px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.steps li { display: flex; gap: 12px; } .steps .n { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--soft); border: 1px solid var(--line); display: grid; place-items: center; font-weight: 700; font-size: 12px; }
.steps li.ok .n { background: var(--ok-bg); color: var(--ok); } .steps li.bad .n { background: var(--bad-bg); color: var(--bad); } .steps li.warn .n { background: var(--warn-bg); color: var(--warn); }
.steps .bar { display: block; margin: 5px 0 2px; }

/* ---------- integrations */
.simbar, .gate { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 10px 0; }
.suite { border-top: 1px solid var(--line); padding-top: 10px; margin-top: 10px; }
.suite-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .suite-head .btn { margin-inline-start: auto; }
.tests { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 4px; }
.tests li { display: grid; grid-template-columns: 18px 1fr auto; gap: 8px; font-size: 12.5px; } .tests li.ok span { color: var(--ok); } .tests li.bad span { color: var(--bad); }
.gate { border-top: 1px solid var(--line); padding-top: 12px; }

/* ---------- security */
.hosting:has(.egress) { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 24px; }
.egress .result { margin-top: 10px; padding: 10px 12px; border-radius: 9px; font-weight: 600; } .egress .result.ok { background: var(--ok-bg); color: var(--ok); } .egress .result.bad { background: var(--bad-bg); color: var(--bad); }
.controls { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.controls li { display: flex; gap: 12px; align-items: flex-start; } .controls li > .pill { flex: none; min-width: 84px; text-align: center; margin-top: 2px; }
.controls li span:not(.tag):not(.pill) { display: block; color: var(--muted); font-size: 12.5px; } .refs { display: block; margin-top: 3px; }

/* ---------- modal + toast */
.modal { position: fixed; inset: 0; background: rgba(8, 15, 20, .55); display: grid; place-items: center; padding: 20px; z-index: 50; overflow: auto; } .modal[hidden] { display: none; }
.modal-card { background: var(--panel); border-radius: 14px; padding: 22px 24px; width: min(480px, 100%); position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, .35); max-height: 92vh; overflow: auto; }
.modal-card.wide { width: min(680px, 100%); }
.modal-x { position: absolute; inset-inline-end: 12px; top: 8px; border: 0; background: none; font-size: 26px; color: var(--muted); cursor: pointer; }
.toasts { position: fixed; bottom: 18px; inset-inline-end: 18px; display: grid; gap: 8px; z-index: 60; }
.toast { padding: 10px 16px; border-radius: 10px; background: var(--ink); color: var(--panel); box-shadow: 0 6px 20px rgba(0, 0, 0, .3); font-weight: 600; max-width: 380px; }
.toast.bad { background: var(--bad); color: #fff; }

/* ---------- login */
.login { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 100vh; }
.login-brand { background: linear-gradient(160deg, #0b5d46, #073d2e); color: #fff; padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.login-brand h1 { font-size: 32px; } .login-brand p { font-size: 16px; opacity: .9; max-width: 42ch; }
.login-brand .logo { background: rgba(255, 255, 255, .14); }
.login-brand ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; } .login-brand li { display: flex; gap: 10px; align-items: center; opacity: .95; }
.login-form { padding: 40px 56px; display: flex; flex-direction: column; justify-content: center; max-width: 560px; width: 100%; margin-inline: auto; }
.login-form h2 { margin-bottom: 16px; } .lang-top { text-align: end; margin-bottom: 20px; }
.demo-box { margin-top: 26px; padding: 14px; border: 1px dashed var(--line); border-radius: 12px; background: var(--soft); display: grid; gap: 8px; }
.acct { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); gap: 8px; }
.acct-btn { text-align: start; padding: 8px 10px; border: 1px solid var(--line); background: var(--panel); border-radius: 9px; cursor: pointer; font: inherit; color: var(--ink); }
.acct-btn:hover { border-color: var(--brand); } .acct-btn small { display: block; color: var(--muted); font-size: 11.5px; }
.demo-hint { background: var(--warn-bg); color: var(--warn); border-radius: 9px; padding: 8px 12px; margin-bottom: 12px; font-size: 13px; }

/* ---------- responsive */
@media (max-width: 960px) {
  .shell { grid-template-columns: minmax(0, 1fr); } .side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; padding: 10px 14px; gap: 10px; }
  nav { flex-direction: row; overflow-x: auto; flex: 1 1 100%; order: 3; } nav a { white-space: nowrap; } .side-foot { margin: 0 0 0 auto; flex-direction: row; align-items: center; } .who small, .hostnote { display: none; }
  main#page { padding: 16px 14px 40px; } .grid2, .hosting { grid-template-columns: 1fr; } .login { grid-template-columns: 1fr; } .login-brand { padding: 32px 24px; } .login-form { padding: 24px; }
  .kv > div { grid-template-columns: 1fr; gap: 0; }
}
td.r { white-space: nowrap; }
label.inline { flex-direction: row; align-items: center; gap: 6px; margin: 0; font-weight: 500; } label.inline input { width: auto; }
/* English evidence text inside the Arabic (RTL) layout keeps its natural reading order */
.controls li span:not(.tag):not(.pill), .clauses td, .audit td.small, .kv dd, .note, .steps small { unicode-bidi: plaintext; }
@media (max-width: 960px) { body { overflow-x: hidden; } .side-foot .row { flex-wrap: nowrap; } }
main#page { min-width: 0; }
.pubbanner { background: var(--warn-bg); color: var(--warn); text-align: center; padding: 6px 12px; font-size: 12.5px; font-weight: 600; } .pubbanner a { color: inherit; }

/* ---------- landing page */
.lp { min-height: 100vh; }
.lp-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 14px clamp(16px, 5vw, 64px); background: var(--panel); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.lp-brand { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.lp-nav { display: flex; flex-direction: row; gap: 18px; align-items: center; } .lp-nav a { padding: 0; border-radius: 0; text-decoration: none; color: var(--muted); font-weight: 500; } .lp-nav a:hover { color: var(--ink); }
.lp-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: center; padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 64px); background: linear-gradient(165deg, #0b5d46 0%, #073d2e 100%); color: #fff; }
.lp-hero h1 { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.12; margin: 8px 0 14px; text-wrap: balance; }
.lp-hero p { font-size: 16px; opacity: .92; max-width: 56ch; }
.lp-eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 700; color: #8ce3c1; }
.lp-cta { margin: 22px 0 8px; } .lp-hint { font-size: 13px !important; opacity: .75 !important; }
.btn.lg { padding: 12px 20px; font-size: 15px; }
.lp-hero .btn.primary { background: #fff; color: #0b5d46; border-color: #fff; } .lp-hero .btn:not(.primary) { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.lp-flow { display: grid; grid-template-columns: 1fr auto 1.1fr auto 1.2fr; gap: 8px; align-items: center; }
.lp-arrow { font-size: 22px; opacity: .7; text-align: center; }
.lp-node { border-radius: 12px; padding: 12px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); } .lp-node b { display: block; font-size: 14px; } .lp-node small { display: block; font-size: 11.5px; opacity: .8; margin-top: 2px; }
.lp-node.gw { background: #fff; color: #0b5d46; text-align: center; padding: 22px 12px; } .lp-node.gw small { opacity: .75; }
.lp-plats { display: grid; gap: 8px; } .lp-node.p-momrah { background: #0d8a8c; border-color: transparent; } .lp-node.p-nic { background: #4f52d6; border-color: transparent; } .lp-node.p-tawakkalna { background: #c46f17; border-color: transparent; }
.lp-sec { padding: clamp(28px, 5vw, 56px) clamp(16px, 5vw, 64px) 8px; max-width: 1200px; margin: 0 auto; } .lp-sec h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 18px; text-wrap: balance; }
.lp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.lp-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 20px; } .lp-card .ico { width: 26px; height: 26px; color: var(--brand); } .lp-card h3 { margin: 10px 0 6px; font-size: 17px; } .lp-card p { color: var(--muted); margin: 0; }
.lp-steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 14px; padding: 0; margin: 22px 0 0; }
.lp-steps li { border-inline-start: 3px solid var(--brand); padding: 4px 12px; } .lp-steps b { display: block; } .lp-steps span { color: var(--muted); font-size: 13.5px; }
.lp-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; } .lp-checks li { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; } .lp-checks b { display: block; color: var(--brand); }
.lp-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; } .lp-roles span { background: var(--info-bg); color: var(--info); border-radius: 999px; padding: 4px 14px; font-weight: 600; font-size: 13px; }
.lp-foot { text-align: center; color: var(--muted); font-size: 12.5px; padding: 36px 16px 44px; }
@media (max-width: 960px) { .lp-hero { grid-template-columns: minmax(0, 1fr); } .lp-flow { grid-template-columns: minmax(0, 1fr); } .lp-arrow { transform: rotate(90deg); } .lp-nav a { display: none; } }
