:root {
  --ink: #0a0a0a;
  --paper: #f4f1eb;
  --accent: #c8392a;
  --accent-light: #e8564a;
  --muted: #8a8578;
  --card-bg: #fffdf8;
  --divider: #d4cfc5;
  --glow: rgba(200, 57, 42, 0.08);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(244, 241, 235, 0.85);
  border-bottom: 1px solid var(--divider);
}

.logo {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span { color: var(--accent); }

nav a.cta-nav {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-bg);
  background: var(--ink);
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a.cta-nav:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 3rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  width: 100%;
  aspect-ratio: auto;
  max-width: 520px;
  border-radius: 24px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(200,57,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(200,57,42,0.08) 0%, transparent 50%);
  animation: hgAmbient 8s ease-in-out infinite alternate;
}

.hero-graphic::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(200,57,42,0.03), transparent);
  animation: hgScan 6s ease-in-out 3s infinite;
  pointer-events: none;
  z-index: 2;
}

.hero-graphic-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Top bar */
.hg-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hg-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hg-topbar-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: hgPulse 2.5s ease infinite;
}

.hg-topbar-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244,241,235,0.5);
}

.hg-topbar-right {
  font-size: 0.68rem;
  color: rgba(244,241,235,0.3);
  font-variant-numeric: tabular-nums;
}

/* Feed */
.hg-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.hg-task {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  animation: hgSlideIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
  transition: background 0.6s ease;
}

.hg-task:nth-child(1) { animation-delay: 0.6s; }
.hg-task:nth-child(2) { animation-delay: 0.9s; }
.hg-task:nth-child(3) { animation-delay: 1.2s; }
.hg-task:nth-child(4) { animation-delay: 1.5s; }
.hg-task:nth-child(5) { animation-delay: 1.8s; }

.hg-task--highlight {
  background: rgba(200,57,42,0.04);
}

.hg-task-avatar {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.55rem; letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hg-task-avatar--human {
  background: rgba(244,241,235,0.07);
  border: 1px solid rgba(244,241,235,0.12);
  color: rgba(244,241,235,0.6);
}

.hg-task-avatar--ai {
  background: var(--accent);
  color: white;
  animation: hgBreath 4s ease-in-out infinite;
}

.hg-task-body {
  flex: 1;
  min-width: 0;
}

.hg-task-action {
  font-size: 0.8rem;
  color: rgba(244,241,235,0.75);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hg-task-action strong {
  color: var(--paper);
  font-weight: 600;
}

.hg-task-meta {
  font-size: 0.65rem;
  color: rgba(244,241,235,0.3);
  margin-top: 0.15rem;
}

.hg-task-status {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.hg-task-status--done {
  background: rgba(74,222,128,0.12);
  color: #4ade80;
}

.hg-task-status--live {
  background: rgba(200,57,42,0.15);
  color: var(--accent-light);
  animation: hgPulse 2s ease infinite;
}

/* Typing dots */
.hg-typing {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.hg-typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.3;
  animation: hgDot 1.4s ease-in-out infinite;
}

.hg-typing span:nth-child(2) { animation-delay: 0.2s; }
.hg-typing span:nth-child(3) { animation-delay: 0.4s; }

.hg-task-status--review {
  background: rgba(250,204,21,0.12);
  color: #facc15;
}

/* Bottom bar */
.hg-bottombar {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}

.hg-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.8rem;
}

/* Team numbers */
.hg-bottom-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hg-team-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}

.hg-team-num-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}

.hg-team-num-val--ai {
  color: var(--accent-light);
}

.hg-team-num--total .hg-team-num-val {
  font-size: 1.05rem;
}

.hg-team-num-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244,241,235,0.3);
}

.hg-team-plus,
.hg-team-eq {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(244,241,235,0.2);
  margin-top: -0.65rem;
}

/* Task counters */
.hg-task-counters {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hg-task-counter {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hg-counter-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.hg-counter-dot--open {
  background: #facc15;
}

.hg-counter-dot--progress {
  background: #38bdf8;
  animation: hgBreath 3s ease-in-out infinite;
}

.hg-counter-dot--closed {
  background: #4ade80;
}

.hg-counter-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}

.hg-counter-val--tick {
  animation: hgTick 0.35s ease;
}

.hg-counter-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(244,241,235,0.3);
}

@keyframes hgPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes hgSlideIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hgFill {
  to { width: 87%; }
}

@keyframes hgFadeIn {
  to { opacity: 1; }
}

@keyframes hgAmbient {
  0% { background-position: 30% 40%; }
  50% { background-position: 60% 30%; }
  100% { background-position: 40% 65%; }
}

@keyframes hgScan {
  0% { top: -120px; }
  100% { top: 110%; }
}

@keyframes hgBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,57,42,0); }
  50% { box-shadow: 0 0 8px 2px rgba(200,57,42,0.25); }
}

@keyframes hgDot {
  0%, 60%, 100% { opacity: 0.2; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes hgBarGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50% { box-shadow: 0 0 6px 1px rgba(74,222,128,0.3); }
}

/* Task swap animation */
.hg-task--exit {
  animation: hgSlideOut 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  overflow: hidden;
}

.hg-task--enter {
  animation: hgSlideEnter 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes hgSlideOut {
  0%   { opacity: 1; transform: translateY(0); max-height: 80px; padding-top: 1rem; padding-bottom: 1rem; }
  50%  { opacity: 0; transform: translateY(-10px); max-height: 80px; padding-top: 1rem; padding-bottom: 1rem; }
  100% { opacity: 0; transform: translateY(-10px); max-height: 0; padding-top: 0; padding-bottom: 0; border-bottom-width: 0; }
}

@keyframes hgSlideEnter {
  from { opacity: 0; transform: translateY(-14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Counter tick */\n.hg-counter-val--tick {\n  animation: hgTick 0.35s ease;\n}\n\n@keyframes hgTick {
  0% { transform: translateY(0); }
  40% { transform: translateY(-4px); color: #4ade80; }
  100% { transform: translateY(0); }
}

/* Status transition */
.hg-task-status--morph {
  animation: hgMorph 0.5s ease;
}

@keyframes hgMorph {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 57, 42, 0.25);
}

.hero-secondary {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-secondary:hover { color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stats-source {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

/* ─── CO MÓWIĄ DANE ─── */
.dane {
  padding: 5rem 2rem;
  background: var(--ink);
  color: var(--paper);
}

.dane .section-tag { color: var(--accent-light); }

.dane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.dane-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dane-card .dane-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dane-card .dane-label {
  font-size: 0.95rem;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.4;
}

.dane-card .dane-contrast {
  font-size: 0.88rem;
  color: rgba(244,241,235,0.5);
  line-height: 1.5;
  margin-top: 0.3rem;
}

.dane-card .dane-source {
  font-size: 0.68rem;
  color: rgba(244,241,235,0.3);
  margin-top: auto;
  padding-top: 1rem;
}

/* ─── STAT TAG ─── */
.stat-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.stat-tag-dark {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-top: 0.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: var(--divider);
  position: relative;
  overflow: hidden;
}

.scroll-hint .line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollLine 2s ease infinite;
}

/* ─── SECTION SHARED ─── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ─── THREE PILLARS ─── */
.pillars {
  background: var(--card-bg);
  color: var(--ink);
  padding: 7rem 2rem;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.pillars .section-tag { color: var(--accent); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card:hover {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(200, 57, 42, 0.06);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon svg, .wart-icon svg, .obszar-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pillar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pillar-card li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.pillar-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.result-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.82rem;
}

/* ─── WYRÓŻNIKI ─── */
.wyrozniki {
  padding: 7rem 2rem;
}

.wyr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.wyr-card {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.wyr-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(200, 57, 42, 0.06);
  transform: translateY(-4px);
}

.wyr-card .wyr-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.wyr-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wyr-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── GDZIE DZIAŁAMY ─── */
.obszary {
  padding: 7rem 2rem;
  background: var(--card-bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.obszary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.obszar-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.obszar-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(200, 57, 42, 0.06);
  transform: translateY(-3px);
}

.obszar-card .obszar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.obszar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.obszar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PRACOWNICY AI ─── */
.pracownicy-ai {
  padding: 7rem 2rem;
  background: var(--ink);
  color: var(--paper);
}

.pracownicy-ai .section-tag { color: var(--accent-light); }

.pracownicy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pracownik-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.pracownik-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pracownik-card:hover::before { transform: scaleX(1); }

.pracownik-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.pracownik-card .pracownik-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.pracownik-card .pracownik-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pracownik-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--paper);
}

.pracownik-card .pracownik-role {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.pracownik-card .pracownik-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244,241,235,0.4);
  margin-top: 0.6rem;
}

.pracownik-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.pracownik-card li {
  font-size: 0.85rem;
  color: rgba(244,241,235,0.7);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.pracownik-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.pracownik-card .kompetencje-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.pracownik-card .kompetencja-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(200, 57, 42, 0.15);
  color: var(--accent-light);
  white-space: nowrap;
}

/* ─── WARTOŚCI ─── */
.wartosci {
  background: var(--ink);
  color: var(--paper);
  padding: 7rem 2rem;
}

.wartosci .section-tag { color: var(--accent-light); }

.wart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.wart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.wart-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.wart-card .wart-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.wart-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wart-card p {
  font-size: 0.92rem;
  color: rgba(244,241,235,0.7);
  line-height: 1.7;
}

/* ─── FUNDAMENTY ─── */
.fundamenty {
  background: var(--card-bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fund-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.fund-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(200, 57, 42, 0.06);
}

.fund-num {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.4;
}

.fund-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fund-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PROCES ─── */
.proces-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.proces-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--divider);
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-dot {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  z-index: 1;
  transition: all 0.3s ease;
}

.step:hover .step-dot {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── WARSZTATY ─── */
.warsztaty {
  padding: 7rem 2rem;
  background: var(--ink);
  color: var(--paper);
}

.warsztaty .section-tag { color: var(--accent-light); }
.warsztaty .section-desc { color: rgba(244,241,235,0.6); }

.warsztaty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.warsztaty-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2.2rem 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.warsztaty-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(200, 57, 42, 0.12);
  transform: translateY(-3px);
}

.warsztaty-card .warsztaty-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.4;
}

.warsztaty-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--paper);
}

.warsztaty-card p {
  font-size: 0.9rem;
  color: rgba(244,241,235,0.7);
  line-height: 1.65;
}

.warsztaty-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.warsztaty-cta .cta-button {
  display: inline-block;
}

.warsztaty-stat {
  font-size: 0.82rem;
  color: rgba(244,241,235,0.5);
  max-width: 480px;
  line-height: 1.6;
  margin-top: 2rem;
}

.warsztaty .stat-tag {
  color: var(--accent-light);
}

/* ─── CTA FINAL ─── */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,57,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--paper);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-section p {
  color: rgba(244,241,235,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 57, 42, 0.3);
}

.cta-footnote-link {
  display: inline-block;
  margin-top: 1rem;
  color: rgba(244,241,235,0.48);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-footnote-link:hover {
  color: rgba(244,241,235,0.72);
}

/* ─── FOOTER ─── */
footer {
  padding: 2rem 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--divider);
  line-height: 1.8;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.brand-wait {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1rem;
}

.brand-wait-label {
  color: rgba(138, 133, 120, 0.54);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-wait-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-wait-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}

.brand-wait-unit strong {
  color: #9a9488;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.brand-wait-unit span {
  color: rgba(138, 133, 120, 0.52);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.22rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav a.cta-nav { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    gap: 2rem;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 100%; }
  .hero p { max-width: 100%; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; gap: 2rem; }
  .hero-actions { justify-content: center; }
  .scroll-hint { display: none; }

  section { padding: 4rem 1.5rem; }
  .pillars, .wyrozniki, .obszary, .wartosci, .pracownicy-ai, .warsztaty { padding: 5rem 1.5rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .wyr-grid { grid-template-columns: 1fr; }
  .dane-grid { grid-template-columns: 1fr; }
  .fund-grid { grid-template-columns: 1fr; }
  .obszary-grid { grid-template-columns: repeat(2, 1fr); }
  .wart-grid { grid-template-columns: 1fr; }
  .pracownicy-grid { grid-template-columns: repeat(2, 1fr); }
  .warsztaty-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
  nav { padding: 0.8rem 1rem; flex-wrap: nowrap; }
  .logo { font-size: 1.25rem; flex-shrink: 0; }
  nav a.cta-nav { padding: 0.45rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.06em; white-space: nowrap; flex-shrink: 0; }

  .hero {
    padding: 6rem 1rem 2.5rem;
    min-height: auto;
    gap: 1.5rem;
  }
  .hero-tag { font-size: 0.68rem; margin-bottom: 1rem; }
  .hero h1 { font-size: 2rem; line-height: 1.12; }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; gap: 0.8rem; }
  .hero-cta { width: 100%; text-align: center; padding: 0.85rem 1.5rem; }
  .hero-secondary { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; margin-top: 2rem; padding-top: 1.5rem; }
  .hero-stat { flex-direction: row; gap: 0.6rem; align-items: baseline; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat span { font-size: 0.72rem; }
  .hero-stats-source { font-size: 0.65rem; margin-top: 0.3rem; }

  section { padding: 3rem 1rem; }
  .pillars, .wyrozniki, .obszary, .wartosci, .pracownicy-ai, .warsztaty { padding: 3.5rem 1rem; }

  .section-title { font-size: 1.75rem; margin-bottom: 1rem; }
  .section-desc { font-size: 0.95rem; margin-bottom: 2rem; }

  .dane { padding: 3.5rem 1rem; }
  .dane-grid { gap: 1rem; }
  .dane-card { padding: 1.6rem 1.2rem; }
  .dane-card .dane-big { font-size: 2.4rem; }
  .dane-card .dane-label { font-size: 0.88rem; }

  .wyr-grid { gap: 1rem; }
  .wyr-card { padding: 1.8rem 1.3rem; }
  .wyr-card .wyr-num { font-size: 2.2rem; }
  .wyr-card h3 { font-size: 1.1rem; }

  .obszary-grid { grid-template-columns: 1fr; gap: 1rem; }
  .obszar-card { padding: 1.4rem 1.2rem; }

  .wart-grid { gap: 1rem; }
  .wart-card { padding: 1.8rem 1.3rem; }

  .pracownicy-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pracownik-card { padding: 1.6rem 1.2rem; }

  .pillars-grid { gap: 1.2rem; }
  .pillar-card { padding: 1.8rem 1.3rem; }
  .pillar-card h3 { font-size: 1.3rem; }

  .proces-steps { margin-top: 2rem; }
  .step { gap: 1.2rem; padding: 1.5rem 0; }
  .step-dot { width: 40px; min-width: 40px; height: 40px; font-size: 1rem; }
  .proces-steps::before { left: 19px; }
  .step-content h4 { font-size: 1rem; }
  .step-content p { font-size: 0.88rem; }

  .warsztaty-grid { grid-template-columns: 1fr; gap: 1rem; }
  .warsztaty-card { padding: 1.6rem 1.2rem; }
  .warsztaty-card .warsztaty-num { font-size: 2rem; }
  .warsztaty-card h4 { font-size: 1rem; }
  .warsztaty-cta { flex-direction: column; }
  .warsztaty-cta .cta-button { width: 100%; text-align: center; }

  .cta-section { padding: 4rem 1rem; }
  .cta-section .section-title { font-size: 1.75rem; }
  .cta-button { padding: 0.9rem 2rem; font-size: 0.92rem; width: 100%; text-align: center; }
  .cta-footnote-link { margin-top: 0.9rem; font-size: 0.68rem; }

  .brand-wait {
    display: flex;
    width: 100%;
    margin-top: 0.9rem;
  }

  .brand-wait-counter {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
  }

  .brand-wait-unit {
    min-width: 0;
    flex: 1;
  }

  .brand-wait-unit strong { font-size: 0.72rem; }
  .brand-wait-unit span { font-size: 0.46rem; }

  footer { padding: 1.5rem 1rem; font-size: 0.75rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.92rem; }
  .section-title { font-size: 1.5rem; }
  .dane-card .dane-big { font-size: 2rem; }
  nav a.cta-nav { padding: 0.4rem 0.8rem; font-size: 0.68rem; }
}
