/* Twarze Przedsiębiorczości – strona tymczasowa (statyczna, bez zewnętrznych zasobów) */
:root {
  --navy: #0f1d3a;
  --navy-2: #172b55;
  --navy-3: #22407a;
  --red: #d9372b;
  --red-dark: #b82b21;
  --red-soft: #fde9e7;
  --blue: #1f5bd1;
  --blue-soft: #e8effc;
  --ink: #141a26;
  --text: #2b3242;
  --muted: #5a6272;
  --line: #e3e7ee;
  --soft: #f4f6fa;
  --white: #ffffff;
  --radius: 12px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-wrap: break-word;
}
h1, h2, h3 { color: var(--navy); line-height: 1.2; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

.skip-link { position: absolute; top: 8px; left: -9999px; z-index: 100; padding: 8px 12px; border-radius: 6px; background: #fff; color: var(--navy); }
.skip-link:focus { left: 16px; }
:focus-visible { outline: 3px solid #7aa7ff; outline-offset: 2px; }

.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Przyciski i etykiety */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border: 2px solid transparent; border-radius: 8px; font-size: 15px; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background-color .15s, border-color .15s; }
.btn .ic { width: 18px; height: 18px; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; }

.chip { display: inline-block; padding: 5px 9px; border-radius: 4px; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.chip-blue { background: var(--blue); }

/* Nagłówek */
.site-header { border-bottom: 1px solid var(--line); background: var(--white); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand-wrap { display: flex; align-items: center; min-width: 0; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-name { font-size: 19px; font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
.brand-name span { display: block; }
.tagline { display: none; margin: 0 0 0 20px; padding-left: 20px; border-left: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.4; }
.header-cta { flex: none; width: 44px; height: 44px; padding: 0; white-space: nowrap; }
.header-cta .ic { width: 20px; height: 20px; }
.header-cta .cta-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@media (min-width: 560px) {
  .header-cta { width: auto; height: auto; padding: 11px 18px; }
  .header-cta .cta-label { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
}
@media (min-width: 768px) {
  .brand-name { font-size: 22px; }
  .brand-mark { width: 46px; height: 46px; }
}
@media (min-width: 880px) { .tagline { display: block; } }

/* Menu */
.main-nav { border-bottom: 1px solid var(--line); background: var(--white); }
.main-nav ul { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav a { display: block; padding: 13px 12px 11px; border-bottom: 2px solid transparent; color: var(--ink); font-size: 14.5px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.main-nav li:first-child a { padding-left: 0; }
.main-nav a:hover { color: var(--blue); }
.main-nav a[aria-current="page"] { border-bottom-color: var(--red); }

/* Otwarcie strony */
.top { padding: 24px 0 8px; }
.top-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .top-grid { grid-template-columns: minmax(0, 1fr) 340px; } }

.hero { position: relative; overflow: hidden; padding: 32px 20px; border-radius: var(--radius); background: radial-gradient(900px 420px at 100% 0%, #25447f 0%, rgba(37, 68, 127, 0) 60%), var(--navy); color: #fff; }
.hero h1 { margin: 18px 0 16px; color: #fff; font-size: clamp(32px, 5.2vw, 52px); font-weight: 800; line-height: 1.06; letter-spacing: -0.025em; }
.hero .lead { max-width: 34em; margin-bottom: 28px; color: #d6deee; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-mail { margin: 18px 0 0; color: #b9c4da; font-size: 14px; }
.hero-mail strong { color: #fff; overflow-wrap: anywhere; }
.faces { display: none; width: 100%; height: auto; }
@media (max-width: 559px) { .hero-actions .btn { flex: 1 1 100%; } }
@media (min-width: 768px) { .hero { padding: 48px 44px; } }
/* Mozaika twarzy tylko tam, gdzie tekst ma dość miejsca (bez niej przy 1024–1199 px, gdy obok stoi kolumna „W przygotowaniu”). */
@media (min-width: 768px) and (max-width: 1023px), (min-width: 1200px) {
  .hero { display: grid; grid-template-columns: minmax(0, 1fr) 200px; gap: 32px; align-items: center; }
  .faces { display: block; }
}
.hero-single { display: block; }
.hero-single .lead { max-width: 40em; }

.upcoming { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.upcoming h2 { margin: 0 0 2px; font-size: 18px; }
.upcoming .note { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.upcoming li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.upcoming li:first-child { border-top: 0; }
.thumb { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 10px; }
.thumb .ic { width: 24px; height: 24px; }
.t-red { background: var(--red-soft); color: var(--red); }
.t-blue { background: var(--blue-soft); color: var(--blue); }
.t-navy { background: var(--navy); color: #fff; }
.u-title { margin: 0 0 4px; color: var(--navy); font-size: 15px; font-weight: 700; line-height: 1.35; }
.u-cat { color: var(--muted); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* Sekcje */
.section { padding: 48px 0; }
.section-sm { padding: 24px 0; }
.section-soft { background: var(--soft); }
.section h2 { margin: 0 0 20px; font-size: clamp(24px, 3vw, 30px); }
h2.eyebrow { margin: 0 0 14px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.industries { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.industries li { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 8px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--navy); font-size: 14px; line-height: 1.3; text-align: center; }
.industries .ic { width: 28px; height: 28px; stroke-width: 1.6; }
@media (min-width: 560px) { .industries { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .industries { grid-template-columns: repeat(8, minmax(0, 1fr)); } }

.cards { display: grid; gap: 16px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { display: flex; flex-direction: column; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; scroll-margin-top: 16px; }
.card h3 { margin: 14px 0 8px; font-size: 19px; }
.card p { color: var(--text); font-size: 15px; }
.card .soon { display: flex; align-items: center; gap: 6px; margin: auto 0 0; padding-top: 4px; color: var(--muted); font-size: 13px; }
.card .soon .ic { width: 16px; height: 16px; }

.cta-band { display: grid; gap: 20px; align-items: center; padding: 28px 22px; border-radius: var(--radius); background: var(--navy); color: #d6deee; }
.cta-band .cta-icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 14px; background: var(--navy-3); color: #9dbcff; }
.cta-band .cta-icon .ic { width: 30px; height: 30px; }
.cta-band h2 { margin: 0 0 6px; color: #fff; font-size: clamp(21px, 2.6vw, 26px); }
.cta-band p { margin: 0; }
.cta-band .btn { justify-self: start; }
@media (min-width: 768px) { .cta-band { grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px; padding: 36px 40px; } }

.about { display: grid; gap: 24px; }
@media (min-width: 900px) { .about { grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; } }
.about-text p { max-width: 42em; color: var(--text); font-size: 17px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.section .contact-card h3 { margin: 0 0 8px; font-size: 18px; }
.contact-card p { color: var(--muted); font-size: 15px; }
.mail-link { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; font-size: 16px; font-weight: 700; text-decoration: none; }
.mail-link span { min-width: 0; overflow-wrap: anywhere; }
.mail-link:hover span { text-decoration: underline; }

/* Podstrona zgłoszeń */
.notice { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border: 1px solid #cfdcf7; border-radius: var(--radius); background: var(--blue-soft); color: #22314f; }
.notice .ic { margin-top: 3px; color: var(--blue); }
.notice h2 { margin: 0 0 4px; font-size: 17px; }
.notice p { margin: 0; }
.two-col { display: grid; gap: 40px; }
@media (min-width: 900px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; } }
.checklist li { position: relative; padding: 10px 0 10px 34px; border-top: 1px solid var(--line); color: var(--text); }
.checklist li:first-child { border-top: 0; }
.checklist li::before { content: ""; position: absolute; top: 13px; left: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9372b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }
.steps { display: grid; gap: 16px; counter-reset: krok; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.steps li { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; counter-increment: krok; }
.steps li::before { content: counter(krok); display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 12px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; }
.section .steps h3 { margin: 0 0 6px; font-size: 18px; }
.steps p { margin: 0; color: var(--text); font-size: 15px; }

/* Stopka */
.site-footer { margin-top: 24px; background: var(--navy); color: #b9c4da; font-size: 14px; }
.footer-grid { display: grid; gap: 24px; padding-top: 40px; padding-bottom: 24px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: minmax(0, 1fr) auto; align-items: start; } }
.site-footer .brand { color: #fff; }
.footer-tagline { margin: 14px 0 0; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-nav a { color: #e3e9f5; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-bottom { padding-top: 16px; padding-bottom: 28px; border-top: 1px solid rgba(255, 255, 255, .1); }
