:root{
  --bg:#070707;
  --bg2:#0b0b0b;
  --text:#f3f3f3;
  --muted:#cfcfcf;
  --muted2:#9f9f9f;
  --line:rgba(255,255,255,.14);
  --accent:#ffffff;

  --max:1200px;
  --stage-max: 1680px;
  --header-h: 64px;
  --gutter: clamp(18px, 3.6vw, 56px);
}

*{box-sizing:border-box}
html,body{height:100%; overscroll-behavior:none; overflow-x:hidden;}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 40%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.45;
  z-index:2;
}

#cloudchamber-bg{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}


.social{
  position:fixed;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:60;
  opacity:.9;
}
.social a{
  width:74px;height:74px;
  display:grid;place-items:center;
  border:1px solid transparent;
  border-radius:999px;
  text-decoration:none;
  transition:.2s ease;
  opacity:.85;
  color: var(--text);
}
.social a:hover{
  border-color:var(--line);
  background:rgba(255,255,255,.04);
  opacity:1;
}
.social svg{ width:26px; height:26px; display:block; opacity:.9; }
.social a:hover svg{ opacity: 1; }

.topbar{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99999;
  min-height: var(--header-h);
  padding: 12px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topnav{
  flex: 1;
  display:flex;
  justify-content:center;
  gap: clamp(18px, 4vw, 46px);
  padding: 10px 0;
}
.topnav a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.85;
  transition: opacity .15s ease, transform .15s ease;
}
.topnav a:hover{ opacity:1; transform: translateY(-1px); }

.top-actions{
  display:flex;
  align-items:center;
  gap:16px;
  opacity:.85;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  flex: 0 0 auto;
}
.top-actions a{ color:var(--text); text-decoration:none; opacity:.9; }
.hamburger{
  display:none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.hamburger:focus-visible{
  outline: 2px solid rgba(140, 220, 255, .55);
  outline-offset: 3px;
}
.hamburger__icon{
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  border-radius: 999px;
  transition: background .18s ease;
}
.hamburger__icon::before,
.hamburger__icon::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.hamburger__icon::before{ top: -7px; }
.hamburger__icon::after{ top: 7px; }

.hamburger.is-open .hamburger__icon{ background: transparent; }
.hamburger.is-open .hamburger__icon::before{
  top: 0;
  transform: rotate(45deg) scaleX(.72);
}
.hamburger.is-open .hamburger__icon::after{
  top: 0;
  transform: rotate(-45deg) scaleX(.72);
}

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: block;
  pointer-events: none;
}
.mobile-menu[hidden]{ display:none !important; }
.mobile-menu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  transition: opacity .22s ease;
}
.mobile-menu__panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 80vw);
  background: #000;
  border-left: 1px solid rgba(255,255,255,.12);
  padding: calc(var(--header-h) + env(safe-area-inset-top) + 26px) 18px 22px;
  transform: translateX(100%);
  transition: transform .22s ease;
  display:flex;
  flex-direction:column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open{
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__backdrop{ opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel{ transform: translateX(0); }

.mobile-menu__nav{
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding-top: 6px;
}
.mobile-menu__nav a{
  color:#fff;
  text-decoration:none;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  display:block;
}
.mobile-menu__nav a:hover{ opacity: 1; }
.mobile-menu__nav a:focus-visible{
  outline: 2px solid rgba(140, 220, 255, .55);
  outline-offset: 2px;
}

.mobile-menu__social{
  display: none;
}
.mobile-menu__social a{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  opacity: .9;
  background: rgba(255,255,255,.02);
  transition: .2s ease;
}
.mobile-menu__social a:hover{
  opacity: 1;
  background: rgba(255,255,255,.04);
}
.mobile-menu__social svg{
  width: 16px;
  height: 16px;
  display: block;
  opacity: .95;
}

.mobile-menu__lang{
  margin-top: 0;
  padding: 0 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-menu__lang .lang-switch{
  opacity: .75;
  color: #fff;
  text-decoration: none;
}
.mobile-menu__lang .lang-switch.is-active{
  opacity: 1;
  font-weight: 800;
}
.mobile-menu__sep{ opacity: .35; }

body.menu-open{
  overflow: hidden;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) and (max-width: 1200px){
  .topnav, .top-actions{ display:none; }
  .hamburger{ display:inline-flex; }
  .mobile-menu__social{
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: auto;
  }
}

.lang-switch{ opacity:.65; }
.lang-switch.is-active{ opacity:1; font-weight:800; }

.icon-btn{
  width:18px;height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}
.icon-btn svg{width:18px;height:18px;fill:none;stroke:var(--text);stroke-width:1.6}

[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

.brand{
  display: inline-flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  opacity: .92;
}
.brand img{
  height: 38px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(1.8) contrast(1.1);
}

.stage{
  width: min(var(--stage-max), 100%);
  margin: 0 auto;
  padding: 22px var(--gutter) 12px;
  display:grid;
  grid-template-columns: minmax(360px, 760px) 1fr;
  gap: clamp(14px, 2.6vw, 46px);
  align-items:start;
  position: relative;
  z-index: 10;
}
.stage__content{ min-width:0; }

.hero-copy{
  min-height: calc(82vh - var(--header-h));
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding-top: clamp(96px, 7vh, 150px);
  padding-bottom: 24px;
  padding-left: 54px;
}
.hero-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: .92;
  font-size: clamp(44px, 4.8vw, 78px);
  margin: 0 0 14px;
  max-width: 18ch;
}
.sub{
  margin:0 0 14px;
  font-size:14px;
  letter-spacing:.02em;
  color:var(--muted);
  font-weight:600;
}
.desc{
  margin:0 0 26px;
  color:var(--muted2);
  font-size:13px;
  line-height:1.6;
  max-width:46ch;
}
.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  text-decoration:none;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.9;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  width:max-content;
}
.cta:hover{opacity:1}
.dot{
  width:6px;height:6px;border-radius:999px;
  background:var(--accent); display:inline-block; opacity:.85;
}

.stage__sphere{
  position: relative;
  min-height: 100vh;
  align-self: stretch;
  overflow: visible;
}
.sticky-rail{
  --sphere-size: min(46vw, 520px);
  position: sticky;
  top: calc(var(--header-h) + 8vh);
  height: var(--sphere-size);
  min-height: 420px;
  overflow: visible;
}

.sphere{
  position: absolute;
  right: 190px;
  top: 0;
  width: var(--sphere-size);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 28% 25%,
    rgba(255,255,255,.38) 0%,
    rgba(255,255,255,.16) 22%,
    rgba(255,255,255,.06) 38%,
    rgba(0,0,0,.15) 60%,
    rgba(0,0,0,.75) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  z-index: 50;
  transform: translate3d(0,0,0) scale(1);
  will-change: transform, opacity;
  isolation:isolate;
}
.sphere::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 55%, transparent 45%, rgba(0,0,0,.35) 80%, rgba(0,0,0,.6) 100%);
  opacity: .9;
}
.sphere__content{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-align:center;
  z-index: 2;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
  padding: 24px;
  transition: opacity .25s ease, transform .25s ease;
}
.sphere__time{
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: .06em;
  font-weight: 800;
}
.sphere__date{
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: .22em;
  opacity: .9;
  text-transform: uppercase;
}
.sphere__caption{
  opacity:.75;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  margin-top:8px;
}
.sphere__content.is-fading{
  opacity: 0;
  transform: translateY(6px);
}

.panel{
  position: relative;
  z-index: 1;
  min-height: clamp(220px, 42vh, 420px);
  padding: clamp(18px, 5vh, 64px) 0;
}
.panel--about{
  min-height: clamp(420px, 62vh, 640px);
  padding: clamp(44px, 8vh, 110px) 0;
}
#dolacz.panel{ min-height: 1px; padding: 0; }

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.about-card{
  position: absolute;
  right: 0;
  top: 0;
  height: var(--sphere-size);
  width: min(44vw, 760px);
  max-width: 760px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.03);
  padding: clamp(22px, 2.4vw, 36px);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 60;
}
.about-card.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.about-card__title{
  margin: 0 0 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 24px);
}
.about-card__lead{
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  font-size: 13px;
  max-width: 68ch;
}
.about-card__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: 13px;
  max-width: 74ch;
}
.about-card__meta{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@property --qbx { syntax: '<percentage>'; inherits: false; initial-value: 28%; }
@property --qby { syntax: '<percentage>'; inherits: false; initial-value: 30%; }
@property --qgx { syntax: '<percentage>'; inherits: false; initial-value: 72%; }
@property --qgy { syntax: '<percentage>'; inherits: false; initial-value: 32%; }
@property --qrx { syntax: '<percentage>'; inherits: false; initial-value: 56%; }
@property --qry { syntax: '<percentage>'; inherits: false; initial-value: 76%; }

@keyframes quarks-drift{
  0%   { --qbx:28%; --qby:30%; --qgx:72%; --qgy:32%; --qrx:56%; --qry:76%; }
  14%  { --qbx:34%; --qby:24%; --qgx:64%; --qgy:40%; --qrx:48%; --qry:82%; }
  28%  { --qbx:46%; --qby:34%; --qgx:58%; --qgy:28%; --qrx:62%; --qry:74%; }
  42%  { --qbx:38%; --qby:46%; --qgx:70%; --qgy:26%; --qrx:66%; --qry:66%; }
  56%  { --qbx:30%; --qby:40%; --qgx:78%; --qgy:40%; --qrx:54%; --qry:70%; }
  70%  { --qbx:22%; --qby:28%; --qgx:66%; --qgy:46%; --qrx:44%; --qry:78%; }
  84%  { --qbx:26%; --qby:22%; --qgx:76%; --qgy:30%; --qrx:60%; --qry:84%; }
  100% { --qbx:28%; --qby:30%; --qgx:72%; --qgy:32%; --qrx:56%; --qry:76%; }
}

.sphere::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  --qbx: 28%;
  --qby: 30%;
  --qgx: 72%;
  --qgy: 32%;
  --qrx: 56%;
  --qry: 76%;

  background:
    radial-gradient(circle at var(--qbx) var(--qby),
      rgba(120,170,255,.38) 0%,
      rgba(120,170,255,.14) 18%,
      transparent 56%),
    radial-gradient(circle at var(--qgx) var(--qgy),
      rgba(120,255,170,.34) 0%,
      rgba(120,255,170,.12) 18%,
      transparent 56%),
    radial-gradient(circle at var(--qrx) var(--qry),
      rgba(255, 90, 90,.34) 0%,
      rgba(255, 90, 90,.12) 18%,
      transparent 58%),
    radial-gradient(circle at 25% 22%,
      rgba(255,255,255,.18) 0%,
      rgba(255,255,255,.06) 30%,
      transparent 60%);
  opacity: .65;
  clip-path: circle(50% at 50% 50%);
  animation: quarks-drift 9.5s ease-in-out infinite;
}

.news{
  position:relative;
  isolation:isolate;
  padding: clamp(70px, 8vw, 110px) calc(var(--gutter) + 32px);
  background: transparent;
  z-index: 1;
}
.news__inner{
  position:relative;
  z-index:1;
  width: min(var(--stage-max), 100%);
  margin: 0 auto;
}
.news__head{ margin: 0 0 18px; max-width: 760px; }
.news__headRow{
  display:flex;
  align-items: baseline;
  justify-content:space-between;
  gap: 14px;
}
.news__moreBtn{
  flex: 0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  text-decoration:none;
  color:#fff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  backdrop-filter: blur(10px);
}
.news__moreBtn:hover{ opacity: 1; border-color: rgba(140, 220, 255, .35); }
.news__moreBtn:focus-visible{
  outline: 2px solid rgba(140, 220, 255, .55);
  outline-offset: 2px;
}
.news__title{
  margin:0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.news__subtitle{
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
  max-width: 60ch;
}
.news__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-card{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(10,10,10,.30);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.03);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}
.news-card:hover,
.news-card:focus-within,
.news-card--featured{
  border-color: rgba(140, 220, 255, .38);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 18px rgba(120, 220, 255, .18),
    0 0 54px rgba(60, 170, 255, .12),
    0 0 110px rgba(30, 120, 255, .10),
    inset 0 0 0 1px rgba(255,255,255,.03),
    inset 0 0 0 1px rgba(120, 220, 255, .12);
  transform: translateY(-2px);
}
.news-card__img{
  display:block;
  height: 240px;
  overflow:hidden;
}
.news-card__img img{
  width:100%; height:100%;
  object-fit:cover;
 /* filter: grayscale(1) contrast(1.08) brightness(.92);*/
  transform: scale(1.02);
  transition: transform .35s ease;
}
.news-card:hover .news-card__img img{ transform: scale(1.06); }
.news-card--featured .news-card__img img{ transform: scale(1.06); }
.news-card__body{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.news-card__title{
  margin:0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}
.news-card__desc{
  margin:0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}
.news-card__more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--text);
  text-decoration:none;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.9;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.news-card__more:hover{ opacity:1; }

.news-card__link{
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}
.news-card__link:focus-visible{
  outline: 2px solid rgba(140, 220, 255, .55);
  outline-offset: 4px;
  border-radius: 18px;
}

.collabs{
  position: relative;
  isolation: isolate;
  padding: 0 var(--gutter);
  background: transparent;
  overflow: hidden;
  z-index: 1;
  min-height: clamp(320px, 55vh, 520px);
  display:flex;
  align-items:center;
}
.collabs__inner{
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  transform: translateY(-60px);
}
.collabs__head{
  text-align:center;
  margin: 0 auto 22px;
  max-width: 720px;
}
.collabs__title{
  margin:0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
}
.collabs__grid{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap: clamp(24px, 5vw, 74px);
}


.collabs__carousel{
  position: relative;
}
.carousel-arrow{
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  z-index: 5;
  place-items: center;
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.carousel-arrow:hover{
  opacity: 1;
  background: rgba(255,255,255,.06);
  transform: translateY(-50%) scale(1.03);
}
.carousel-arrow:active{
  transform: translateY(-50%) scale(.98);
}
.carousel-arrow svg{
  width: 20px;
  height: 20px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .78;
}
.carousel-arrow--left{ left: 6px; }
.carousel-arrow--right{ right: 6px; }
.carousel-arrow.is-hidden{
  opacity: 0;
  pointer-events: none;
}
.carousel-arrow:disabled{
  opacity: .22;
  pointer-events: none;
}
.collabs a, .collabs a:visited{ color: inherit; text-decoration:none; }
.collab{ display:block; border-radius: 999px; outline: none; }
.collab__logo{
  height: 86px;
  min-width: 220px;
  padding: 12px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: .78;
  background: transparent;
}
.collab:hover .collab__logo,
.collab:focus-visible .collab__logo{
  transform: translateY(-2px);
  opacity: 1;
  background: rgba(255,255,255,.03);
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
}
.collab__logo img{
  display:block;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  /* filter: grayscale(1) contrast(1.08) brightness(1.15);*/
  opacity: .92;
}

.contact{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding: clamp(70px, 8vw, 110px) calc(var(--gutter) + 32px);
  background: linear-gradient(180deg, #070707 0%, #050505 100%);
  border-top: 1px solid rgba(255,255,255,.10);
  z-index: 1;
}
.contact::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(1100px 560px at 25% 40%, rgba(255,255,255,.05), transparent 62%),
    radial-gradient(900px 520px at 75% 60%, rgba(255,255,255,.035), transparent 66%);
  opacity:.9;
}

.contact__inner{
  position:relative;
  z-index:1;
  width: min(var(--stage-max), 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: minmax(380px, 1fr) 1.12fr;
  gap: clamp(18px, 3vw, 56px);
  align-items: stretch;
}

.contact-card{
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.03);
  padding: clamp(22px, 2.2vw, 36px);
  display:flex;
  flex-direction:column;
  width: 100%;
  max-width: 620px;
  min-height: clamp(380px, 32vw, 520px);
}

.contact-card__title{
  margin: 0 0 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 24px);
}
.contact-card__lead{
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  font-size: 13px;
  max-width: 68ch;
}
.contact-card__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: 13px;
}
.contact-card__rows{
  display:grid;
  gap: 10px;
  margin-top: 4px;
}
.contact-row{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.6;
}
.contact-row:first-child{ border-top: 0; padding-top: 0; }
.contact-row strong{
  min-width: 88px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
}
.contact-card a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}
.contact-card a:hover{
  border-bottom-color: rgba(255,255,255,.42);
}

.contact-spacer{ min-height: clamp(420px, 44vw, 560px); }

.contact-bg-elements{
  position:absolute;
  top:0; bottom:0;
  left: 42%;
  width: 58%;
  right:0;
  z-index:0;
  pointer-events:none;
  opacity:.70;

  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 100%);
}

.contact-elements{
  --bg:#000;
  --fg: rgba(255,255,255,.82);
  --border: rgba(255,255,255,.30);

  --u: 120,255,190;
  --pu:120,185,255;
  --xe:190,120,255;

  --li: 255, 200, 120;
  --he: 120, 220, 255;

  position:relative;
  width:100%;
  height:100%;
  background: var(--bg);
  overflow:hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  isolation:isolate;
}

.contact-elements::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.24;
  background:
    radial-gradient(1.2px 1.2px at 8% 16%, rgba(255,255,255,.30), transparent 55%),
    radial-gradient(1.2px 1.2px at 22% 58%, rgba(255,255,255,.22), transparent 55%),
    radial-gradient(1.2px 1.2px at 54% 22%, rgba(255,255,255,.20), transparent 55%),
    radial-gradient(1.2px 1.2px at 72% 66%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(1.2px 1.2px at 88% 34%, rgba(255,255,255,.20), transparent 55%),
    radial-gradient(1.2px 1.2px at 40% 84%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(1.2px 1.2px at 92% 82%, rgba(255,255,255,.14), transparent 55%),
    radial-gradient(1.2px 1.2px at 14% 86%, rgba(255,255,255,.14), transparent 55%);
}

#elementsStage{
  position:relative;
  width:100%;
  height:100%;
  transform: translateZ(0);
  isolation:isolate;
}

#elementsStage::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(900px 650px at 50% 48%, rgba(255,255,255,.055), transparent 62%),
    radial-gradient(1300px 900px at 50% 50%, transparent 58%, rgba(0,0,0,.70) 86%, rgba(0,0,0,.92) 100%);
}

.ce-tile{
  position:absolute;
  left: calc(var(--x) * 1%);
  top:  calc(var(--y) * 1%);
  width: calc(var(--s) * 1px);
  height: calc(var(--s) * 1px);
  transform: translate(-50%,-50%) translate3d(var(--px, 0px), var(--py, 0px), 0);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.01);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
  overflow:hidden;
  opacity: var(--op, 1);
  z-index: var(--z, 1);
  animation: ce-float 9s ease-in-out infinite;
  animation-delay: calc(var(--d) * 1s);
  will-change: transform;
}

.ce-tile{ filter: blur(var(--blur, 0px)); }
.ce-bg{
  filter: none !important;
  animation: none !important;
  will-change: auto;
}

.ce-tile::before{
  content:"";
  position:absolute; inset:-2px;
  pointer-events:none;
  opacity:.50;
  background:
    radial-gradient(260px 210px at 18% 18%, rgba(255,255,255,.055), transparent 60%),
    radial-gradient(260px 210px at 82% 88%, rgba(255,255,255,.038), transparent 65%);
}

@keyframes ce-float{
  0%,100%{ transform: translate(-50%,-50%) translate3d(var(--px, 0px), var(--py, 0px), 0) translateY(0px); }
  50%{ transform: translate(-50%,-50%) translate3d(var(--px, 0px), var(--py, 0px), 0) translateY(-10px); }
}

.ce-inner{
  position:relative;
  height:100%;
  padding: 10px 10px 8px;
  display:flex;
  flex-direction:column;
  z-index:1;
}

.ce-top{ display:flex; justify-content:flex-start; min-height: 18px; }
.ce-num{
  color: rgba(255,255,255,.76);
  font-weight:700;
  letter-spacing:.02em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(9px, calc(var(--s) * .07px), 13px);
  line-height:1;
}

.ce-mid{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: clamp(3px, calc(var(--s) * .012px), 7px);
  text-align:center;
  padding-top: 2px;
}

.ce-sym{
  color: var(--fg);
  font-weight:800;
  letter-spacing:.02em;
  line-height:1;
  font-size: clamp(16px, calc(var(--s) * .40px), 72px);
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.ce-name{
  color: rgba(255,255,255,.68);
  font-weight:650;
  letter-spacing:.01em;
  line-height:1.05;
  font-size: clamp(9px, calc(var(--s) * .11px), 18px);
}

.ce-bg .ce-name{ display:none; }
.ce-bg .ce-mid{ gap: 0; }
.ce-bg{
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
}
.ce-bg .ce-sym{ opacity:.42; text-shadow:none; }
.ce-bg .ce-num{ opacity:.32; color: rgba(255,255,255,.40); }

.ce-u{ border-color: rgba(var(--u), .28); }
.ce-pu{ border-color: rgba(var(--pu), .28); }
.ce-xe{ border-color: rgba(var(--xe), .28); }
.ce-li{ border-color: rgba(var(--li), .28); }
.ce-he{ border-color: rgba(var(--he), .28); }

.site-footer{
  position: relative;
  z-index: 1;
  padding: 34px var(--gutter);
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.10);
}
.site-footer__inner{
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.site-footer__copy{
  grid-column: 2;
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}
.site-footer__top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}
.site-footer__top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-footer__top:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
  opacity: 1;
}
.site-footer__top svg{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-map{
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  height: clamp(320px, 26vw, 263px);
}
.contact-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(1) contrast(1.08) brightness(.85);
}

.news, .collabs, .contact{
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) and (max-width: 1200px){
  .stage{ grid-template-columns: 1fr; padding: 16px 16px 0; }

  .stage__content{ display: contents; }

  .stage__sphere{
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
    margin: 0;
  }

  .panel{
    min-height: clamp(10px, 3vh, 24px);
    padding: 0;
  }
  .panel--about{
    min-height: clamp(16px, 4vh, 32px);
    padding: 0;
  }

  .sticky-rail{
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 0;
  }
  .sphere{
    position: sticky;
    top: calc(var(--header-h) + 14px);
    right: auto;
    width: min(620px, 86vw);
  }

  .about-card{ position: static; width: 100%; max-width: 720px; height: auto; display:none; opacity: 1; transform: none; }
  .about-card.is-visible{ display:block; }

  .hero-copy{ padding-left: 0; min-height: auto; padding-top: clamp(72px, 8vh, 120px); padding-bottom: 0; }

  .news{ padding: 2px 16px 56px; }

  .collabs__inner{ transform: none; }
  .collabs{ min-height: auto; padding: 36px 16px 86px; }

  .contact{ padding: clamp(70px, 8vw, 110px) 16px; }
  .contact__inner{ grid-template-columns: 1fr; }
  .contact-bg-elements{ left:0; width:100%; opacity:.30; }
  .contact-card{ max-width: 720px; }
  .news__grid{ grid-template-columns: 1fr; }
  .news-card__img{ height: 200px; }

  .news-card, .contact-card, .about-card{ backdrop-filter: none; }
  body:before{ display:none; }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) and (max-width: 1200px){
  .collabs__head{ margin-bottom: 14px; }
  .collabs__carousel{ margin: 0 -16px; } 
  .collabs__grid{
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 10px 0; 
  }
  .collabs__grid::-webkit-scrollbar{ display:none; }
  .collabs__grid{ scrollbar-width: none; }
  .collab{
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display:flex;
    justify-content:center;
  }
  .collab__logo{
    min-width: 0;
    width: min(420px, 82vw);
  }
  .carousel-arrow{ display:grid; }
  .carousel-arrow--left{ left: 10px; }
  .carousel-arrow--right{ right: 10px; }
  .sphere::before{ animation: none; }
}

@media (max-width: 560px){

  html, body{ overflow-x:hidden; }
  .social{ display:none; }
  .topbar{ padding: 10px 16px; }
  .brand img{ height: 22px; }
  .hero-title{
    font-size: clamp(28px, 8.8vw, 46px);
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .site-footer{ padding: 18px 16px; }
  .site-footer__inner{ grid-template-columns: 1fr; justify-items: center; }
  .site-footer__copy{ grid-column: 1; text-align: center; font-size: 9px; line-height: 1.45; }
}

@media (prefers-reduced-motion: reduce){
  .sphere, .sphere__content, .about-card, .ce-tile{ transition:none; animation:none; }
  .sphere::before{ animation:none; }
}

@media (min-width: 981px){
  .hero-copy{
    min-height: calc(100vh - var(--header-h));
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(18px);
  }
}


.article-page{
  position: relative;
  z-index: 10;
}

.article-shell{
  width: min(var(--stage-max), 100%);
  margin: 0 auto;
  padding: calc(var(--header-h) + 64px) var(--gutter) 90px;
  display: grid;
  gap: 16px;
}

.article-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.article-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  width: min(920px, 100%);
  max-width: 920px;
  margin-top: 10px;
}

.article-nav__btn{
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(0,0,0,.12);
  padding: 12px 12px;
  display:flex;
  flex-direction:column;
  gap: 6px;
  flex: 1 1 220px;
  min-width: 160px;
  max-width: none;
}
.article-nav__btn:hover{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}
.article-nav__btn.is-disabled{
  opacity: .35;
  pointer-events: none;
}
.article-nav__kicker{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
}
.article-nav__title{
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
  line-height: 1.25;
}

.article-back{ margin-bottom: 6px; }

.article-title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(26px, 3.1vw, 46px);
  max-width: 34ch;
}

.article-meta{
  margin: 0 0 6px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .02em;
}

.article-card{
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(10,10,10,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.03);
  padding: clamp(18px, 2.2vw, 30px);
  max-width: 920px;
}

.article-body{
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  font-size: 14px;
  max-width: 74ch;
}

.article-placeholder{
  display: grid;
  gap: 12px;
}

.article-placeholder__img{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(800px 380px at 30% 30%, rgba(255,255,255,.06), transparent 55%),
    rgba(255,255,255,.02);
}

.article-placeholder__text{ margin: 0; }
.article-placeholder__muted{ color: rgba(255,255,255,.58); }

.article-body p{ margin: 0 0 14px; }
.article-body ul, .article-body ol{ margin: 0 0 16px; padding-left: 18px; }
.article-body li{ margin: 6px 0; }
.article-body h2{
  margin: 18px 0 10px;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
.article-body a{
  color: rgba(255,255,255,.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 1px;
}
.article-body a:hover{ border-bottom-color: rgba(255,255,255,.48); }

.article-body img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  display:block;
  margin: 12px 0 18px;
  /*filter: grayscale(1) contrast(1.08) brightness(.92);*/
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) and (max-width: 1200px){
  .article-card{ backdrop-filter: none; }
  .article-shell{ padding: calc(var(--header-h) + 54px) 16px 70px; }
}



/* Styl dla kontenera strzałki */
.scroll-down-indicator {
  position: absolute;
  bottom: 69rem;       /* Odległość od dołu */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;        /* Kolor strzałki - dopasuj do tła (np. biały) */
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 200;
  cursor: pointer;
}

.scroll-down-indicator:hover {
  opacity: 1;
}

/* Styl samej ikony SVG */
.scroll-arrow {
  width: 32px;
  height: 32px;
  animation: bounce 2s infinite; /* Uruchomienie animacji */
}

/* Definicja animacji podskakiwania */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}