*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pomaranczowy: #f96a2f;
  --granat:       #12132a;
  --zielen:       #29c96e;
  --biel:         #f7f7f5;
  --czerń:        #0e0f1e;
}

html, body { height: 100%; overflow: hidden; }

body {
  background: var(--biel);
  color: var(--czerń);
  font-family: 'Barlow', sans-serif;
  cursor: none;
}

.kursor {
  position: fixed; width: 12px; height: 12px;
  border: 2px solid var(--granat); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .15s, background .2s, border-color .2s;
  mix-blend-mode: multiply;
}
body.aktywny .kursor {
  background: var(--pomaranczowy); border-color: var(--pomaranczowy);
  transform: translate(-50%,-50%) scale(1.8);
}

.siatka {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.kolumna-lewa {
  background: var(--pomaranczowy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.8rem 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  z-index: 2;
}

.kolumna-lewa::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.nazwa-pion {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 5.8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--biel);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding-left: 2.6rem;
  white-space: nowrap;
  opacity: 0;
  animation: wjazd 1s cubic-bezier(.22,1,.36,1) .3s forwards;
}

.ikona-strzalki {
  padding-left: 2.4rem;
  padding-bottom: .4rem;
  opacity: 0;
  animation: pojawienie .6s ease 1s forwards;
}
.ikona-strzalki svg { width: 28px; height: 28px; }

.kolumna-srodkowa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.4rem 0 4.2rem;
  position: relative;
  z-index: 1;
}

.linia-gorna, .linia-dolna {
  position: absolute; left: 4.2rem; right: 2.4rem;
  height: 1px; background: rgba(14,15,30,.1);
  transform: scaleX(0); transform-origin: left;
}
.linia-gorna { top: 3.2rem; animation: rozrost .9s cubic-bezier(.22,1,.36,1) .5s forwards; }
.linia-dolna { bottom: 3.2rem; animation: rozrost .9s cubic-bezier(.22,1,.36,1) .7s forwards; }

@keyframes rozrost { to { transform: scaleX(1); } }

.etykieta {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pomaranczowy); font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: wjazd .7s cubic-bezier(.22,1,.36,1) .55s forwards;
}

.naglowek {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 3.5vw, 3.8rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--granat);
  opacity: 0;
  animation: wjazd .8s cubic-bezier(.22,1,.36,1) .7s forwards;
}

.naglowek .kontur {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--granat);
  display: block;
}

.tagi {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 2.4rem;
  opacity: 0;
  animation: wjazd .7s cubic-bezier(.22,1,.36,1) .9s forwards;
}

.tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; padding: .32rem .8rem;
  border: 1.5px solid; border-radius: 2px;
}
.tag-pomaranczowy { border-color: var(--pomaranczowy); color: var(--pomaranczowy); }
.tag-zielony      { border-color: var(--zielen);        color: var(--zielen); }
.tag-neutralny    { border-color: rgba(14,15,30,.2);    color: rgba(14,15,30,.5); }

.lokalizacja {
  margin-top: 2.8rem;
  font-size: .72rem; letter-spacing: .08em;
  color: rgba(14,15,30,.35); font-weight: 300;
  font-style: italic;
  opacity: 0;
  animation: pojawienie .6s ease 1.1s forwards;
}

.kolumna-prawa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5rem 0 3.5rem;
  border-left: 1px solid rgba(14,15,30,.08);
  position: relative;
  z-index: 1;
}

.kontakt-etykieta {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(14,15,30,.35); margin-bottom: 1.6rem;
  opacity: 0; animation: wjazd .6s cubic-bezier(.22,1,.36,1) .95s forwards;
}

.przycisk {
  position: relative;
  display: flex; align-items: center; gap: 1.2rem;
  text-decoration: none;
  padding: 1.4rem 1.8rem;
  border: 2px solid var(--granat);
  background: transparent;
  color: var(--granat);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .12em;
  transition: color .35s ease;
  overflow: hidden;
  opacity: 0;
  animation: wjazd .8s cubic-bezier(.22,1,.36,1) 1.05s forwards;
}

.wypelnienie {
  position: absolute; inset: 0;
  background: var(--granat);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
  z-index: 0;
}

.przycisk:hover .wypelnienie { transform: translateY(0); }
.przycisk:hover { color: var(--biel); }

.przycisk svg, .tekst-przycisku, .strzalka-przycisku {
  position: relative; z-index: 1;
}

.przycisk svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

.strzalka-przycisku {
  margin-left: .4rem;
  transition: transform .3s ease;
  font-size: 1.1rem;
}
.przycisk:hover .strzalka-przycisku { transform: translateX(6px); }

.dostepnosc {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 2rem;
  font-size: .7rem; letter-spacing: .06em;
  color: rgba(14,15,30,.38); font-weight: 300;
  opacity: 0; animation: pojawienie .6s ease 1.4s forwards;
}

.dostepnosc::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--zielen);
  box-shadow: 0 0 8px var(--zielen);
  flex-shrink: 0;
  animation: pulsowanie 2.2s ease-in-out infinite;
}

@keyframes pulsowanie {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.tlo-inicjaly {
  position: absolute; bottom: -1rem; right: -1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem; line-height: 1;
  color: rgba(14,15,30,.03);
  pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}

@keyframes wjazd {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pojawienie { to { opacity: 1; } }

@media (max-width: 700px) {
  html, body { overflow: auto; cursor: auto; }
  .kursor { display: none; }

  .siatka {
    display: flex; flex-direction: column; height: auto; min-height: 100vh;
  }

  .kolumna-lewa {
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    flex-direction: row; align-items: center;
    padding: 2.5rem 2rem 4rem;
    min-height: 140px;
  }

  .nazwa-pion {
    writing-mode: horizontal-tb;
    transform: none; font-size: 3rem; padding-left: 0;
  }

  .ikona-strzalki { padding: 0; margin-left: auto; }

  .kolumna-srodkowa { padding: 3rem 2rem 2rem; }
  .linia-gorna, .linia-dolna { display: none; }

  .kolumna-prawa { padding: 2rem; border-left: none; border-top: 1px solid rgba(14,15,30,.08); }
}
