/* ===========================================================
   Catalyz — Website system (shared)
   Fonts: Schibsted Grotesk (display) · Hanken Grotesk (text)
   =========================================================== */
:root{
  --violet:#8B5CF6;--violet-600:#7C3AED;--violet-700:#6D28D9;--violet-400:#A78BFA;
  --violet-300:#C4B5FD;--violet-200:#DDD6FE;--violet-100:#EDE9FE;--violet-50:#F5F3FF;
  --ink:#17132B;--ink-2:#2A2540;--slate:#5C5878;--muted:#8B87A3;
  --line:#EAE7F2;--line-2:#F0EDF7;--bg:#FBFAFE;--bg-2:#F6F4FC;--white:#fff;
  --pos:#10B981;--pos-bg:#E7F8F1;--pos-ink:#047857;--warn:#F59E0B;--warn-bg:#FEF4E2;--warn-ink:#B45309;--neg:#F43F5E;--neg-bg:#FEECEF;--neg-ink:#BE123C;
  --grad:linear-gradient(150deg,#A78BFA,#7C3AED 60%,#6D28D9);
  --grad-bg:linear-gradient(160deg,#7C3AED 0%,#5B21B6 100%);
  --shadow-sm:0 1px 2px rgba(23,19,43,.06),0 1px 3px rgba(23,19,43,.04);
  --shadow-md:0 12px 34px -14px rgba(85,55,175,.22),0 2px 6px rgba(23,19,43,.05);
  --shadow-lg:0 40px 90px -40px rgba(85,55,175,.45),0 10px 30px -16px rgba(23,19,43,.12);
  --maxw:1200px;--r:16px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:var(--bg);color:var(--ink);
  font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;line-height:1.6;font-size:17px;}
.disp{font-family:'Schibsted Grotesk',sans-serif;}
.num{font-variant-numeric:tabular-nums;}
a{color:inherit;text-decoration:none;}
::selection{background:var(--violet-200);}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}

/* ---------- spark mark helper ---------- */
.spark{display:inline-block;}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:9px;font-family:'Schibsted Grotesk';font-weight:600;
  font-size:16px;padding:13px 22px;border-radius:11px;border:1px solid transparent;cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;white-space:nowrap;}
.btn svg{width:16px;height:16px;}
.btn-primary{background:var(--violet-600);color:#fff;box-shadow:0 10px 22px -10px rgba(124,58,237,.7);}
.btn-primary:hover{background:var(--violet-700);transform:translateY(-1px);}
.btn-ghost{background:#fff;color:var(--ink);border-color:var(--line);}
.btn-ghost:hover{border-color:var(--violet-300);color:var(--violet-700);}
.btn-light{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.24);}
.btn-light:hover{background:rgba(255,255,255,.22);}
.btn-lg{font-size:17px;padding:16px 28px;}

/* ---------- eyebrow / headings ---------- */
.eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:'Schibsted Grotesk';font-size:14px;
  font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--violet-600);}
.eyebrow .sp{width:15px;height:15px;color:var(--violet-600);}
h1,h2,h3,h4{font-family:'Schibsted Grotesk';letter-spacing:-.025em;margin:0;line-height:1.08;color:var(--ink);}
.h-display{font-size:60px;font-weight:700;letter-spacing:-.035em;line-height:1.02;}
.h-section{font-size:42px;font-weight:700;}
.lead{font-size:21px;color:var(--slate);line-height:1.55;}
.section{padding:104px 0;}
.section-head{max-width:680px;}
.section-head .eyebrow{margin-bottom:18px;}
.section-head h2{margin-bottom:18px;}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* =========================================================
   TOP NAV
   ========================================================= */
.nav{position:sticky;top:0;z-index:50;background:rgba(251,250,254,.82);
  backdrop-filter:saturate(180%) blur(14px);-webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);}
.nav-in{max-width:var(--maxw);margin:0 auto;padding:0 32px;height:72px;display:flex;align-items:center;gap:34px;}
.brand{display:flex;align-items:center;gap:12px;flex:none;}
.brand .mk{width:38px;height:38px;border-radius:10px;background:var(--grad);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm);}
.brand .mk svg{width:21px;height:21px;}
.brand b{font-family:'Schibsted Grotesk';font-weight:700;font-size:22px;letter-spacing:-.03em;}
.nav-links{display:flex;align-items:center;gap:6px;}
.nav-links a{font-size:15.5px;font-weight:500;color:var(--slate);padding:9px 14px;border-radius:9px;transition:color .15s,background .15s;}
.nav-links a:hover{color:var(--ink);background:var(--bg-2);}
.nav-cta{margin-left:auto;display:flex;align-items:center;gap:10px;}
.nav-cta .login{font-size:15.5px;font-weight:600;color:var(--ink);padding:9px 14px;font-family:'Schibsted Grotesk';}
.nav-cta .login:hover{color:var(--violet-700);}
.nav-burger{display:none;width:42px;height:42px;border:1px solid var(--line);border-radius:10px;background:#fff;align-items:center;justify-content:center;margin-left:auto;cursor:pointer;}
.nav-burger svg{width:20px;height:20px;color:var(--ink);}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{background:#fff;border-top:1px solid var(--line);padding:72px 0 40px;margin-top:0;}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:40px;}
.footer-brand .brand{margin-bottom:18px;}
.footer-brand p{color:var(--slate);font-size:15px;max-width:280px;margin:0 0 22px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:38px;height:38px;border-radius:10px;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--slate);transition:.15s;}
.footer-social a:hover{border-color:var(--violet-300);color:var(--violet-700);background:var(--violet-50);}
.footer-social svg{width:17px;height:17px;}
.footer-col h4{font-family:'Schibsted Grotesk';font-size:14px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--muted);margin:0 0 16px;}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;}
.footer-col a{font-size:15px;color:var(--slate);transition:color .15s;}
.footer-col a:hover{color:var(--violet-700);}
.footer-bottom{max-width:var(--maxw);margin:48px auto 0;padding:26px 32px 0;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;color:var(--muted);font-size:14px;}
.footer-bottom .legal-links{display:flex;gap:22px;flex-wrap:wrap;}
.footer-bottom .legal-links a:hover{color:var(--violet-700);}

/* =========================================================
   responsive
   ========================================================= */
@media(max-width:920px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:34px;}
  .footer-brand{grid-column:1 / -1;}
  .h-display{font-size:44px;}
  .h-section{font-size:34px;}
}
@media(max-width:720px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .nav-burger{display:flex;}
  .section{padding:72px 0;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}


/* =========================================================
   ERROR PAGES
   ========================================================= */
.err-wrap{min-height:100vh;display:flex;flex-direction:column;
  background:radial-gradient(60% 48% at 50% -4%,#F0EAFF 0%,rgba(240,234,255,0) 60%),var(--bg);}
.err-nav{padding:24px 0;}
.err-nav .wrap{display:flex;align-items:center;justify-content:space-between;}
.err-nav .help{font-size:14.5px;font-weight:600;color:var(--slate);font-family:'Schibsted Grotesk';}
.err-nav .help:hover{color:var(--violet-700);}
.err-main{position:relative;flex:1;display:flex;align-items:center;justify-content:center;padding:48px 0 72px;overflow:hidden;}
.err-ghost{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:680px;height:680px;color:var(--violet-600);opacity:.05;pointer-events:none;}
.err-inner{position:relative;z-index:1;max-width:620px;text-align:center;}
.err-code{display:flex;align-items:center;justify-content:center;gap:4px;line-height:.9;margin-bottom:24px;}
.err-code .d{font-family:'Schibsted Grotesk';font-weight:800;font-size:158px;letter-spacing:-.04em;
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;}
.err-code .o{width:112px;height:112px;color:var(--violet-600);}
.err-inner .eyebrow{justify-content:center;margin-bottom:16px;}
.err-inner h1{font-size:40px;font-weight:700;letter-spacing:-.025em;margin:0 0 14px;}
.err-inner p{font-size:18px;color:var(--slate);line-height:1.6;margin:0 auto 32px;max-width:486px;}
.err-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.err-foot{border-top:1px solid var(--line);padding:24px 0;}
.err-foot .wrap{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;color:var(--muted);font-size:14px;}
.err-foot .links{display:flex;gap:20px;flex-wrap:wrap;}
.err-foot .links a:hover{color:var(--violet-700);}
@media(max-width:720px){
  .err-code .d{font-size:104px;}
  .err-code .o{width:74px;height:74px;}
  .err-inner h1{font-size:30px;}
  .err-inner p{font-size:16.5px;}
}
