:root {
  --pp-green: #0c5c4f;
  --pp-green-2: #0a4d43;
  --pp-ink: #0f2f2a;
}

/* Tło “tech” jak w PDF */
.tech-grid {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 60%);
  background-size: 18px 18px, cover;
}

.hero-bg {
  background: linear-gradient(135deg, #0a5a4d 0%, #063f37 45%, #0b2b28 100%);
}

/* Kształt sekcji hero */
.section-clip {
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

/* Glass panel */
.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

/* Link underline */
.nav-link {
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: width 180ms ease;
}
.nav-link:hover:after {
  width: 100%;
}

/* Pixel-perfect spacing jak w PDF */
.pp-container {
  max-width: 1120px;
}

/* ====== Page transitions (podstrony) ====== */
.page {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.page.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.fade-out {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}

/* Button shadow */
.pill-btn {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Form focus */
input:focus,
textarea:focus {
  outline: none !important;
}

@font-face {
  font-family: "PowerPeakFont";
  src: url("../assets/PowerPeakFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
