/* Noviq Solutions — shared styles */
:root{
  --ink:#05161A; --surface:#072E33; --surface-2:#0A3A40; --deep:#0C7075;
  --accent:#0F969C; --accent-hi:#17A9AF; --steel:#6DA5C0; --slate:#294D61;
  --success:#3FA980; --warning:#C99A45; --danger:#C2645B;
  --text:#F2FAFB; --body:#B9D0D3; --secondary:#93B6BA; --muted:#6E9BA1;
  --line:rgba(109,165,192,.14); --line-strong:#16454B;
  --gutter:clamp(24px,6vw,160px);
  --ease:cubic-bezier(.22,.8,.28,1);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--ink);color:var(--body);
  font-family:'IBM Plex Sans',system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:17px;line-height:1.7;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{max-width:100%}
a{color:var(--steel);text-decoration:none;border-bottom:1px solid rgba(109,165,192,.35);transition:color .16s var(--ease),border-color .16s var(--ease)}
a:hover{color:var(--accent);border-bottom-color:var(--accent)}
a:focus-visible,button:focus-visible,input:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(15,150,156,.4);border-radius:6px}
.mono{font-family:'IBM Plex Mono',ui-monospace,SFMono-Regular,Menlo,monospace}
.chivo{font-family:'Chivo','Helvetica Neue',Arial,sans-serif}
.wrap{max-width:1440px;margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter)}
.skip{position:absolute;left:-9999px}
.skip:focus{left:16px;top:16px;z-index:99;background:var(--accent);color:#04191C;padding:10px 16px;border-radius:8px;border:0}

/* header */
.site-head{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;padding-top:36px}
.brand{display:flex;align-items:center;gap:13px;border:0}
.brand:hover{border:0}
.brand-name{font-family:'Chivo','Helvetica Neue',Arial,sans-serif;font-weight:900;font-size:21px;letter-spacing:-.02em;line-height:1;color:var(--text)}
.brand-desc{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:9px;letter-spacing:.3em;color:var(--steel);margin-top:4px}
.head-meta{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:11px;letter-spacing:.22em;color:var(--muted)}
.head-meta a{border:0;color:var(--muted)}
.head-meta a:hover{color:var(--accent)}

/* footer */
.site-foot{margin-top:clamp(72px,10vw,116px);padding:30px 0 56px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:20px 32px;flex-wrap:wrap;font-size:14px;color:var(--muted)}
.site-foot nav{display:flex;gap:24px;flex-wrap:wrap}
.foot-mail{font-family:'IBM Plex Mono',ui-monospace,monospace;letter-spacing:.04em;color:var(--steel)}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;height:56px;padding:0 30px;
  border:0;border-radius:10px;font-family:'Chivo','Helvetica Neue',Arial,sans-serif;font-weight:700;font-size:15px;
  background:var(--accent);color:#04191C;cursor:pointer;transition:background .16s var(--ease);white-space:nowrap}
.btn:hover{background:var(--accent-hi)}
.btn:active{background:var(--deep)}
.btn[disabled]{opacity:.45;cursor:default}
.btn-ghost{background:transparent;color:var(--steel);border:1px solid var(--line-strong)}
.btn-ghost:hover{background:rgba(15,150,156,.09);color:var(--text)}

/* long-form pages */
.doc h1{font-family:'Chivo',sans-serif;font-weight:900;font-size:clamp(32px,6vw,44px);letter-spacing:-.028em;line-height:1.05;color:var(--text);margin:56px 0 0}
.doc h2{font-family:'Chivo',sans-serif;font-weight:700;font-size:22px;letter-spacing:-.015em;color:var(--text);margin:46px 0 14px}
.doc h3{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--steel);font-weight:400;margin:30px 0 10px}
.doc p{margin:0 0 16px}
.doc ul{margin:0 0 16px;padding-left:22px}
.doc li{margin-bottom:9px}
.doc .lead{font-size:19px;color:var(--secondary);margin-top:20px}
.doc .addr{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:15px;line-height:2;color:var(--text)}
.doc .small{font-size:15px;color:var(--muted)}
.doc{max-width:820px;margin:0 auto}
.doc .toc{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:13px;line-height:2;columns:2;column-gap:36px;margin:28px 0 8px}
.doc .toc a{border:0;color:var(--body)}
.doc .toc a:hover{color:var(--accent)}
.doc .box{border:1px solid var(--line);background:var(--surface);border-radius:12px;padding:20px 24px;margin:20px 0}
.doc .box p{margin:0;font-size:15px}
@media (max-width:640px){.doc .toc{columns:1}}

@media print{
  body{background:#fff;color:#1A2426}
  .site-head nav,.skip{display:none}
  a{color:#0C7075}
  .doc h1,.doc h2,.brand-name,.doc .addr{color:#05161A}
  .brand-desc,.doc h3{color:#294D61}
  .doc .box{background:#EEF3F3;border-color:#CBDADA}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  html{scroll-behavior:auto}
}
