  :root{
    --deep:#0A0F14;
    --neon:#adf800;
    --neon-dim:rgba(173,248,0,0.4);
    --muted:#1E293B;
    --glass:rgba(20,28,36,0.45);
    --text:#F8FAFC;
    --subtext:#5C738A;
    --subtext-l:#8CA3B8;
    --surface:#10141B;
    --deep-flat:#05080A;
    --on-neon:#121f00;

    --font-ui:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
    --font-mono:'JetBrains Mono',ui-monospace,'SFMono-Regular',Menlo,Consolas,monospace;

    --ease-out:cubic-bezier(0.22,1,0.36,1);
    color-scheme: dark;
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--deep);
    color:var(--text);
    font-family:var(--font-ui);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  ::selection{ background:var(--neon); color:#0e1400; }

  a{ color:inherit; text-decoration:none; }
  h1,h2,h3{ font-weight:700; margin:0; text-wrap:balance; letter-spacing:-0.02em; }
  p{ margin:0; color:var(--subtext); }
  code, .mono{ font-family:var(--font-mono); }

  .grid-bg{
    background-size:40px 40px;
    background-image:
      linear-gradient(to right, rgba(30,41,59,0.3) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(30,41,59,0.3) 1px, transparent 1px);
  }

  .wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
  @media (max-width:640px){ .wrap{ padding:0 20px; } }

  /* ===== scroll reveal ===== */
  .reveal{ opacity:0; transform:translateY(26px); transition:opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
  .reveal.in{ opacity:1; transform:none; }
  .reveal-d1{ transition-delay:0.08s; } .reveal-d2{ transition-delay:0.16s; }
  .reveal-d3{ transition-delay:0.24s; } .reveal-d4{ transition-delay:0.32s; }

  /* ===== topbar ===== */
  .topbar{
    position:sticky; top:0; z-index:50;
    background:rgba(10,15,20,0.72);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid transparent;
    transition:border-color 0.3s ease, background 0.3s ease;
  }
  .topbar.scrolled{ border-bottom-color:var(--muted); background:rgba(10,15,20,0.9); }
  .topbar__inner{ display:flex; align-items:center; justify-content:space-between; height:64px; gap:20px; }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand__mark{
    width:26px; height:26px; flex:none; object-fit:contain;
    filter:drop-shadow(0 0 6px rgba(173,248,0,0.45));
    transition:transform 0.3s var(--ease-out), filter 0.3s ease;
  }
  .brand:hover .brand__mark{ transform:rotate(-8deg) scale(1.08); filter:drop-shadow(0 0 12px rgba(173,248,0,0.65)); }
  .brand__name{ font-size:15px; font-weight:700; letter-spacing:0.02em; }
  .brand__suffix{ color:var(--subtext); font-family:var(--font-mono); font-size:11px; margin-left:4px; }
  .nav{ display:flex; gap:32px; }
  .nav a{ font-size:13px; color:var(--subtext-l); position:relative; transition:color 0.25s ease; }
  .nav a::after{
    content:''; position:absolute; left:0; bottom:-4px; width:100%; height:1px;
    background:var(--neon); transform:scaleX(0); transform-origin:left;
    transition:transform 0.3s var(--ease-out);
  }
  .nav a:hover{ color:var(--text); }
  .nav a:hover::after{ transform:scaleX(1); }
  @media (max-width:900px){ .nav{ display:none; } }
  .topbar__right{ display:flex; align-items:center; gap:14px; }
  .status-pill{
    display:flex; align-items:center; gap:8px;
    font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.12em;
    color:var(--subtext); border:1px solid var(--muted); border-radius:2px; padding:7px 12px;
  }
  @media (max-width:640px){ .status-pill{ display:none; } }
  .status-pill__dot{
    width:6px; height:6px; border-radius:50%; background:var(--neon);
    box-shadow:0 0 8px var(--neon-dim); animation:pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:0.35;} }

  .btn{
    position:relative; overflow:hidden; display:inline-flex; align-items:center; justify-content:center;
    font-family:var(--font-mono); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:0.08em;
    padding:14px 26px; border-radius:2px; cursor:pointer; border:none;
    transition:transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  }
  .btn--sm{ padding:10px 18px; font-size:11px; }
  .btn-glow{ background:var(--neon); color:var(--on-neon); box-shadow:0 0 0 rgba(173,248,0,0); }
  .btn-glow:hover{ transform:translateY(-2px); box-shadow:0 6px 28px rgba(173,248,0,0.35); }
  .btn-glow::after{
    content:''; position:absolute; top:0; left:-80%; width:50%; height:100%;
    background:linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform:skewX(-20deg); transition:left 0.6s var(--ease-out);
  }
  .btn-glow:hover::after{ left:130%; }
  .btn-glow:active{ transform:translateY(0); }
  .btn-ghost{ background:transparent; color:var(--text); border:1px solid var(--muted); }
  .btn-ghost:hover{ border-color:var(--neon); color:var(--neon); transform:translateY(-2px); }

  /* ===== hero ===== */
  .hero{ padding:96px 0 88px; position:relative; overflow:hidden; }
  .hero__canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:0; pointer-events:none; }
  .hero .wrap{ position:relative; z-index:1; }
  .hero__glow{
    position:absolute; border-radius:50%; filter:blur(140px); pointer-events:none;
  }
  .hero__glow--1{ width:520px; height:520px; left:-160px; top:-140px; background:rgba(173,248,0,0.08); animation:drift1 12s ease-in-out infinite; }
  .hero__glow--2{ width:440px; height:440px; right:-140px; top:220px; background:rgba(46,134,255,0.07); animation:drift2 14s ease-in-out infinite; }
  @keyframes drift1{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(46px,26px);} }
  @keyframes drift2{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(-38px,-30px);} }

  .hero__head{ text-align:center; max-width:1060px; margin:0 auto; position:relative; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.16em;
    color:var(--neon); margin-bottom:24px; font-weight:500;
  }
  .eyebrow::before, .eyebrow::after{ content:''; width:16px; height:1px; background:var(--neon); }
  .eyebrow--left::after{ display:none; }

  .hero h1{ font-size:clamp(1.75rem, 3.6vw, 2.7rem); line-height:1.18; font-weight:800; }
  .hero h1 .l2{ white-space:nowrap; }
  @media (max-width:760px){ .hero h1 .l2{ white-space:normal; } }
  .hero h1 em{ font-style:normal; color:var(--neon); }
  .hero__lede{ font-size:16.5px; color:var(--subtext-l); max-width:56ch; margin:24px auto 0; }
  .hero__hook{
    margin:24px auto 0; font-size:14.5px; color:var(--text); max-width:720px;
    padding:14px 18px; border-left:2px solid var(--neon); background:rgba(173,248,0,0.05);
    transition:border-color 0.3s ease, background 0.3s ease;
  }
  .hero__hook strong{ font-weight:600; }
  .hero__hook .neon{ color:var(--neon); font-weight:600; }
  .hero__cta{ display:flex; gap:16px; margin-top:34px; justify-content:center; flex-wrap:wrap; }

  /* ===== hero terminal ===== */
  .hero-term{ max-width:640px; margin:64px auto 0; }
  @media (max-width:700px){ .hero-term{ margin-top:48px; } }

  .term-card{
    background:rgba(20,28,36,0.72); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
    border:1px solid var(--muted); border-radius:4px; overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.5);
  }
  .term-card__head{
    height:40px; border-bottom:1px solid var(--muted);
    display:flex; align-items:center; justify-content:space-between; padding:0 16px;
    background:rgba(16,21,28,0.6);
  }
  .term-card__name{ font-family:var(--font-mono); font-size:12px; color:var(--subtext); }
  .term-card__dots{ display:flex; gap:5px; }
  .term-card__dots span{ width:6px; height:6px; border-radius:50%; }
  .term-card__dots span:first-child{ background:var(--neon); }
  .term-card__dots span:last-child{ background:var(--muted); }
  .term-card__body{ padding:16px 20px; background:rgba(5,8,10,0.55); }
  .term-line{
    display:flex; gap:10px; align-items:baseline; font-family:var(--font-mono); font-size:12px; line-height:1.9;
    opacity:0; transform:translateX(-8px); transition:opacity 0.45s ease, transform 0.45s var(--ease-out);
  }
  .term-line.in{ opacity:1; transform:none; }
  .term-line .tag{ color:var(--subtext); flex:none; width:15px; text-align:right; }
  .term-line .ok{ color:var(--neon); font-weight:500; }
  .term-line .path{ color:var(--text); }
  .cursor{ display:inline-block; width:7px; height:14px; background:var(--neon); margin-left:4px; animation:blink 1.1s step-end infinite; vertical-align:-2px; }
  @keyframes blink{ 50%{ opacity:0; } }

  /* ===== sections ===== */
  section{ padding:84px 0; border-top:1px solid var(--muted); position:relative; }
  .section__head{ max-width:660px; margin-bottom:48px; }
  .section__head--center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section__head h2{ font-size:clamp(1.55rem, 2.8vw, 2.1rem); line-height:1.2; }
  .section__head p{ margin-top:16px; font-size:15px; color:var(--subtext-l); }

  /* ===== stats ===== */
  .stats-grid{
    display:grid; grid-template-columns:repeat(4,1fr);
    border:1px solid var(--muted); border-radius:2px; overflow:hidden;
  }
  @media (max-width:900px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }
  .stat{
    padding:28px 24px; border-right:1px solid var(--muted); border-bottom:1px solid var(--muted);
    transition:background 0.3s ease;
  }
  .stat:hover{ background:rgba(173,248,0,0.04); }
  .stat:nth-child(4n){ border-right:none; }
  .stat:nth-child(n+5){ border-bottom:none; }
  @media (max-width:900px){
    .stat:nth-child(2n){ border-right:none; }
    .stat:nth-child(n+5){ border-bottom:1px solid var(--muted); }
    .stat:nth-child(n+7){ border-bottom:none; }
  }
  .stat__num{ font-size:34px; font-weight:800; letter-spacing:-0.02em; line-height:1.1; }
  .stat--hl{ background:rgba(173,248,0,0.08); }
  .stat--hl .stat__num{ color:var(--neon); }
  .stat--hl .stat__cap{ color:#C9E88A; }
  .stat__cap{ margin-top:8px; font-size:12.5px; color:var(--subtext); }

  /* ===== architektura ===== */
  .cols{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center; }
  @media (max-width:900px){ .cols{ grid-template-columns:1fr; gap:40px; } }
  .flow{ display:flex; flex-direction:column; }
  .flow__node{
    background:var(--glass); border:1px solid var(--muted); border-radius:3px;
    padding:20px 22px; transition:border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out);
  }
  .flow__node:hover{ border-color:rgba(173,248,0,0.55); transform:translateX(6px); }
  .flow__node--core{ border-color:var(--neon); box-shadow:0 0 24px rgba(173,248,0,0.12); }
  .flow__node h3{ font-size:13px; font-family:var(--font-mono); font-weight:500; text-transform:uppercase; letter-spacing:0.06em; color:var(--text); }
  .flow__node p{ margin-top:8px; font-size:13px; }
  .flow__node ul{ list-style:none; margin:10px 0 0; padding:0; display:flex; flex-direction:column; gap:6px; }
  .flow__node li{ font-family:var(--font-mono); font-size:11.5px; color:var(--subtext); padding-left:16px; position:relative; }
  .flow__node li::before{ content:'→'; position:absolute; left:0; color:var(--neon); }
  .flow__arrow{ padding:4px 22px; color:var(--subtext); font-family:var(--font-mono); font-size:14px; }
  .arch-visual{
    border:1px solid var(--muted); border-radius:6px; overflow:hidden; position:relative;
    box-shadow:0 24px 60px rgba(0,0,0,0.4);
  }
  .arch-visual img{ display:block; width:100%; height:auto; transition:transform 0.8s var(--ease-out); }
  .arch-visual:hover img{ transform:scale(1.03); }
  .arch-visual__cap{
    position:absolute; left:16px; bottom:16px;
    font-family:var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--subtext-l);
    padding:8px 14px; border-radius:2px; background:rgba(20,28,36,0.75);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border:1px solid var(--muted);
  }
  .visual-placeholder{
    aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; text-align:center;
    border:1px dashed var(--muted); border-radius:6px; padding:24px;
    font-family:var(--font-mono); font-size:12px; color:var(--subtext); background:var(--surface);
  }

  /* ===== moduły ===== */
  .bento{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  @media (max-width:980px){ .bento{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:640px){ .bento{ grid-template-columns:1fr; } }
  .mod-card{
    --mx:50%; --my:50%;
    position:relative;
    background:var(--glass); border:1px solid var(--muted); border-radius:3px;
    padding:22px; display:flex; flex-direction:column; gap:12px;
    transition:border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
    overflow:hidden;
  }
  .mod-card::before{
    content:''; position:absolute; inset:0; pointer-events:none; opacity:0;
    background:radial-gradient(320px circle at var(--mx) var(--my), rgba(173,248,0,0.08), transparent 65%);
    transition:opacity 0.35s ease;
  }
  .mod-card:hover{ border-color:rgba(173,248,0,0.55); transform:translateY(-3px); box-shadow:0 14px 34px rgba(0,0,0,0.35); }
  .mod-card:hover::before{ opacity:1; }
  .mod-card__top{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
  .mod-card__path{ font-family:var(--font-mono); font-size:11px; color:var(--subtext); }
  .mod-card h3{ font-size:16.5px; font-weight:600; margin-top:4px; }
  .mod-card__icon{
    width:34px; height:34px; border-radius:2px; flex:none;
    background:var(--surface); border:1px solid var(--muted);
    display:flex; align-items:center; justify-content:center; color:var(--subtext-l);
    transition:color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
  }
  .mod-card:hover .mod-card__icon{ color:var(--neon); border-color:var(--neon); transform:rotate(-6deg) scale(1.06); }
  .mod-card__icon svg{ width:16px; height:16px; }
  .mod-card p{ font-size:13.5px; }
  .mod-card .snippet{
    margin-top:auto; background:var(--deep-flat); border:1px solid var(--muted); border-radius:2px;
    padding:10px 12px; font-family:var(--font-mono); font-size:11.5px; color:var(--neon);
    overflow-x:auto; white-space:pre;
  }
  .mod-card--clickable{ cursor:pointer; }
  .mod-card--clickable:focus-visible{ outline:2px solid var(--neon); outline-offset:3px; }
  .mod-card--clickable.is-active{ border-color:rgba(173,248,0,0.55); }
  .mod-card__preview{
    font-family:var(--font-mono); font-size:11.5px; font-weight:600; color:var(--neon);
  }

  /* ===== podgląd zrzutu ekranu — panel w miejscu, pod siatką modułów ===== */
  .mod-showcase{
    position:relative; margin-top:22px; padding:28px; text-align:center;
    background:var(--glass); border:1px solid rgba(173,248,0,0.35); border-radius:6px;
    box-shadow:0 24px 60px rgba(0,0,0,0.35);
  }
  .mod-showcase img{
    display:block; max-width:100%; max-height:560px; width:auto; height:auto; margin:0 auto;
    border:1px solid var(--muted); border-radius:4px;
  }
  .mod-showcase__cap{
    margin-top:16px; font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase;
    letter-spacing:0.1em; color:var(--subtext-l);
  }
  .mod-showcase__close{
    position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%;
    background:var(--surface); border:1px solid var(--muted); color:var(--text); font-size:13px;
    cursor:pointer; transition:border-color 0.25s ease, color 0.25s ease;
  }
  .mod-showcase__close:hover{ border-color:var(--neon); color:var(--neon); }

  /* ===== integracje ===== */
  .integ-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
  @media (max-width:900px){ .integ-grid{ grid-template-columns:1fr; } }
  .integ-card{
    background:var(--glass); border:1px solid var(--muted); border-radius:3px; padding:24px 22px;
    transition:border-color 0.3s ease;
  }
  .integ-card:hover{ border-color:rgba(173,248,0,0.45); }
  .integ-card__label{
    font-family:var(--font-mono); font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:0.12em;
    color:var(--neon); margin-bottom:16px; display:flex; align-items:center; gap:10px;
  }
  .integ-card__label::after{ content:''; flex:1; height:1px; background:var(--muted); }
  .chips{ display:flex; flex-wrap:wrap; gap:8px; }
  .chip{
    font-size:12.5px; color:var(--subtext-l); padding:7px 12px;
    border:1px solid var(--muted); border-radius:2px; background:rgba(5,8,10,0.4);
    transition:color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
  }
  .chip:hover{ color:var(--neon); border-color:var(--neon); transform:translateY(-2px); }
  .chip--native{ color:var(--neon); border-color:rgba(173,248,0,0.55); font-weight:600; }
  .uslugi{
    margin-top:22px; border:1px solid var(--muted); border-radius:3px; background:var(--glass);
    padding:24px 22px;
  }
  .uslugi__list{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px 28px; }
  @media (max-width:900px){ .uslugi__list{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .uslugi__list{ grid-template-columns:1fr; } }
  .usluga{ display:flex; gap:10px; align-items:baseline; font-size:13.5px; color:var(--subtext-l); }
  .usluga::before{ content:'→'; color:var(--neon); font-family:var(--font-mono); flex:none; }
  .usluga strong{ color:var(--text); font-weight:600; }

  /* ===== dodatki ===== */
  .erp-pick-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
  @media (max-width:900px){ .erp-pick-grid{ grid-template-columns:1fr; } }
  .erp-pick{
    display:flex; flex-direction:column; align-items:flex-start; gap:10px;
    background:var(--glass); border:1px solid var(--muted); border-radius:3px; padding:24px 22px;
    transition:border-color 0.3s ease, transform 0.3s var(--ease-out);
  }
  a.erp-pick:hover{ border-color:rgba(173,248,0,0.55); transform:translateY(-3px); }
  .erp-pick h3{ font-size:16.5px; font-weight:600; }
  .erp-pick p{ font-size:13.5px; }
  .erp-pick__badge{
    font-family:var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:0.1em;
    color:var(--subtext-l); border:1px solid var(--muted); border-radius:2px; padding:5px 10px;
  }
  .erp-pick__badge--live{ color:var(--neon); border-color:rgba(173,248,0,0.55); }
  .erp-pick__link{ margin-top:4px; font-family:var(--font-mono); font-size:12px; color:var(--neon); font-weight:600; }

  /* ===== bezpieczeństwo ===== */
  .sec-grid{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--muted); border-radius:2px; overflow:hidden; }
  @media (max-width:900px){ .sec-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .sec-grid{ grid-template-columns:1fr; } }
  .sec-cell{
    background:var(--surface); padding:24px 20px;
    border-right:1px solid var(--muted);
    transition:background 0.3s ease;
  }
  .sec-cell:last-child{ border-right:none; }
  @media (max-width:900px){ .sec-cell{ border-bottom:1px solid var(--muted); } }
  .sec-cell:hover{ background:#131a24; }
  .sec-cell__bar{ width:22px; height:3px; border-radius:2px; background:var(--neon); margin-bottom:14px; transition:width 0.35s var(--ease-out); }
  .sec-cell:hover .sec-cell__bar{ width:44px; }
  .sec-cell h3{ font-size:12.5px; font-family:var(--font-mono); font-weight:500; text-transform:uppercase; letter-spacing:0.05em; color:var(--text); }
  .sec-cell p{ margin-top:10px; font-size:12.5px; line-height:1.6; }

  /* ===== wdrożenie ===== */
  .deploy{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  @media (max-width:900px){ .deploy{ grid-template-columns:1fr; gap:40px; } }
  .deploy__facts{ display:flex; flex-direction:column; gap:22px; margin-top:30px; }
  .fact{ display:flex; gap:16px; }
  .fact__mark{ width:5px; flex:none; background:var(--neon); border-radius:2px; transition:box-shadow 0.3s ease; }
  .fact:hover .fact__mark{ box-shadow:0 0 12px var(--neon-dim); }
  .fact h3{ font-size:15px; font-weight:600; }
  .fact p{ font-size:13.5px; margin-top:5px; }
  .term-card--install pre{
    margin:0; font-family:var(--font-mono); font-size:12px; line-height:1.85;
    overflow-x:auto; white-space:pre; color:var(--neon);
  }
  .term-card--install .c-com{ color:var(--subtext); }
  .term-card--install .c-out{ color:var(--text); }

  /* ===== FAQ ===== */
  .faq{ max-width:820px; margin:0 auto; }
  .faq-item{ border:1px solid var(--muted); border-radius:3px; background:var(--glass); overflow:hidden; transition:border-color 0.3s ease; }
  .faq-item + .faq-item{ margin-top:12px; }
  .faq-item:hover{ border-color:rgba(173,248,0,0.4); }
  .faq-item summary{
    list-style:none; cursor:pointer; padding:18px 22px;
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    font-weight:600; font-size:15px; color:var(--text);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary .plus{
    flex:none; font-family:var(--font-mono); font-size:16px; color:var(--neon);
    transition:transform 0.3s var(--ease-out);
  }
  .faq-item[open] summary .plus{ transform:rotate(45deg); }
  .faq-item__body{ padding:0 22px 20px; font-size:14px; color:var(--subtext-l); line-height:1.7; }

  /* ===== CTA ===== */
  .cta{ text-align:center; padding:110px 0; overflow:hidden; }
  .cta__glow{ position:absolute; border-radius:50%; filter:blur(150px); pointer-events:none; }
  .cta__glow--1{ width:480px; height:480px; left:8%; top:10%; background:rgba(173,248,0,0.08); animation:drift1 13s ease-in-out infinite; }
  .cta__glow--2{ width:400px; height:400px; right:6%; bottom:0; background:rgba(46,134,255,0.07); animation:drift2 15s ease-in-out infinite; }
  .cta h2{ font-size:clamp(1.9rem, 3.6vw, 2.75rem); line-height:1.16; }
  .cta h2 em{ font-style:normal; color:var(--neon); }
  .cta p{ margin:20px auto 0; max-width:52ch; font-size:15px; color:var(--subtext-l); }
  .cta .btn{ margin-top:36px; }
  .cta__foot{ margin-top:18px; font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--subtext); }

  /* ===== formularz kontaktowy ===== */
  .contact-form{ max-width:560px; margin:36px auto 0; text-align:left; display:flex; flex-direction:column; gap:18px; }
  .cf-honeypot{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; pointer-events:none; }
  .cf-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  @media (max-width:560px){ .cf-row{ grid-template-columns:1fr; } }
  .cf-field{ display:flex; flex-direction:column; gap:8px; }
  .cf-field label{
    font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--subtext);
  }
  .contact-form input[type=text], .contact-form input[type=email], .contact-form textarea, .contact-form select{
    width:100%; background:rgba(5,8,10,0.4); border:1px solid var(--muted); border-radius:2px;
    padding:12px 14px; color:var(--text); font-family:var(--font-ui); font-size:14px;
    transition:border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .contact-form textarea{ resize:vertical; min-height:96px; }
  .contact-form select{ cursor:pointer; background-color:var(--surface); }
  .contact-form select option{ background-color:var(--surface); color:var(--text); }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{
    outline:none; border-color:var(--neon); box-shadow:0 0 0 3px rgba(173,248,0,0.12);
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder{ color:var(--subtext); }
  .cf-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
  .contact-form .btn{ margin-top:0; }
  .contact-form .btn:disabled{ opacity:0.6; cursor:default; transform:none; box-shadow:none; }
  .cf-status{ font-size:13px; color:var(--subtext-l); }
  .cf-status.is-ok{ color:var(--neon); }
  .cf-status.is-err{ color:#ff8080; }

  /* ===== footer ===== */
  footer{ border-top:1px solid var(--muted); padding:64px 0 40px; }
  .footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:48px; }
  @media (max-width:900px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:520px){ .footer__grid{ grid-template-columns:1fr; gap:36px; } }
  .footer__brand p{ margin-top:16px; font-size:13px; line-height:1.65; color:var(--subtext); max-width:34ch; }
  .footer__brand .status-pill{ display:inline-flex; margin-top:20px; }
  .footer__col h4{ font-family:var(--font-mono); font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:0.14em; color:var(--subtext); margin:0 0 16px; }
  .footer__col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .footer__col a{ font-size:13.5px; color:var(--subtext-l); transition:color 0.25s ease, padding-left 0.25s var(--ease-out); }
  .footer__col a:hover{ color:var(--neon); padding-left:4px; }
  .footer__col a.accent{ color:var(--neon); font-weight:600; }
  .footer__col a.accent:hover{ text-decoration:underline; }
  .footer__bar{
    margin-top:52px; padding-top:24px; border-top:1px solid var(--muted);
    display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  }
  .footer__bar p{ font-size:12px; }
  .footer__bar .mono{ font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--subtext); }
  .footer__legal{ display:flex; gap:24px; }
  .footer__legal a{ font-size:12px; color:var(--subtext); transition:color 0.25s ease; }
  .footer__legal a:hover{ color:var(--text); }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *, *::before, *::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
    .reveal{ opacity:1; transform:none; }
  }
