/* filip.gorgo brand CSS system
 * Single source of truth — extracted z /en/audit/ pattern.
 * Strony używają tego + Tailwind utility classes (/built.css) dla layout.
 */

:root {
    --bg: #0a0a0a;
    --text: #e5e5e5;
    --text-bright: #ffffff;
    --text-muted: rgba(255,255,255,0.5);
    --text-soft: rgba(255,255,255,0.35);
    --text-faint: rgba(255,255,255,0.2);
    --accent: #8b5cf6;
    --accent-text: #a78bfa;
    --accent-dim: rgba(139,92,246,0.4);
    --border: rgba(255,255,255,0.05);
    --border-med: rgba(255,255,255,0.08);
    --border-card: rgba(255,255,255,0.06);
    --card-bg: rgba(255,255,255,0.015);
    --card-hover: rgba(255,255,255,0.03);
}

.serif { font-family: 'Lora', ui-serif, Georgia, serif; }

/* SECTIONS — match /en/audit/ */
.section {
    padding: 96px 24px;
    border-top: 1px solid var(--border);
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-kicker {
    color: var(--accent-text);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
}
.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: 20px;
}
.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 56px;
}

/* CARDS — match /en/audit/ */
.card {
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 36px 32px;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.card:hover {
    background: var(--card-hover);
    border-color: rgba(139,92,246,0.15);
    transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

.card-label {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: var(--accent-text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.card-title {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: var(--text-bright);
    margin-bottom: 16px;
    line-height: 1.3;
}
.card-body {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}
.card-body + .card-body { margin-top: 12px; }

.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.card-full { grid-column: 1 / -1; }

@media (max-width: 768px) {
    .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
    .section { padding: 72px 20px; }
    .section-sub { margin-bottom: 40px; }
}

/* SCROLL REVEAL — graceful: default visible, JS adds opacity:0 only when bootstrap succeeds */
.sr {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
html.js .sr:not(.visible) {
    opacity: 0;
    transform: translateY(24px);
}

/* HERO — extracted z /en/audit/ for canonical reuse */
.hero { position: relative; padding: 140px 24px 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-glow-1 { position: absolute; top: -200px; left: -150px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, rgba(139,92,246,0.05) 40%, transparent 70%); border-radius: 50%; animation: glow-float-1 8s ease-in-out infinite; }
.hero-glow-2 { position: absolute; top: -100px; right: -120px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(192,38,211,0.12) 0%, rgba(192,38,211,0.03) 40%, transparent 70%); border-radius: 50%; animation: glow-float-2 10s ease-in-out infinite; }
.hero-glow-3 { position: absolute; bottom: -200px; left: 30%; width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%); animation: glow-float-3 12s ease-in-out infinite; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%); }

.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; border: 1px solid rgba(139,92,246,0.3); color: var(--accent-text); font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 36px; border-radius: 50px; background: rgba(139,92,246,0.05); animation: fade-up 0.8s ease-out both; }
.hero-kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s ease-in-out infinite; }
/* Responsive kicker — short label dla mobile per feedback v3 punkt 5 */
.hero-kicker-full { display: inline; }
.hero-kicker-short { display: none; }
@media (max-width: 480px) {
    .hero-kicker { letter-spacing: 1.8px; padding: 6px 14px; font-size: 10px; }
    .hero-kicker-full { display: none; }
    .hero-kicker-short { display: inline; }
}
.hero h1 { font-family: 'Lora', serif; font-size: clamp(30px, 5.5vw, 52px); line-height: 1.05; font-weight: 700; color: var(--text-bright); margin-bottom: 24px; animation: fade-up 0.8s ease-out 0.1s both; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.hero h1 .hero-line2 { display: block; font-style: italic; font-weight: 400; background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(167,139,250,0.6)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; animation: fade-up 0.8s ease-out 0.2s both; }
.hero-pain { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 640px; margin-bottom: 40px; animation: fade-up 0.8s ease-out 0.25s both; }
.hero-context { font-size: 13px; color: rgba(167,139,250,0.7); max-width: 640px; margin-bottom: 32px; animation: fade-up 0.8s ease-out 0.27s both; }
.hero-summary { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 720px; margin-bottom: 32px; animation: fade-up 0.8s ease-out 0.28s both; }

/* Hero 2-col grid — CTA above fold per psych-sales feedback v6 (8.05) */
.hero-grid-2col { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; animation: fade-up 0.8s ease-out 0.25s both; }
@media (min-width: 900px) {
    .hero-grid-2col { grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
}
.hero-col-action { display: flex; flex-direction: column; }
.hero-col-action .hero-cta-row { margin-bottom: 8px; animation: none; }
.hero-col-action .hero-cta-benefits { margin-top: 10px; margin-bottom: 18px; animation: none; }
.hero-col-action .hero-icp-badge { margin-bottom: 0; animation: none; }
.hero-col-action .hero-scarcity { animation: none; }
.hero-col-proof { display: flex; flex-direction: column; }
.hero-col-proof .hero-objection-killer { margin-bottom: 14px; max-width: none; animation: none; }
.hero-col-proof .hero-bullets-group { animation: none; }

/* Hero bullets — replaces hero-summary block per psych-sales feedback (8.05) */
.hero-bullets { list-style: none; padding: 0; margin: 0 0 28px; max-width: 640px; display: flex; flex-direction: column; gap: 10px; animation: fade-up 0.8s ease-out 0.26s both; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.45; }
.hero-bullets li strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.hero-bullet-icon { font-size: 18px; opacity: 0.85; flex-shrink: 0; }

/* ICP qualification badge — wydzielony dla "to dla mnie?" instant signal */
.hero-icp-badge { display: inline-flex; align-items: flex-start; gap: 10px; padding: 10px 16px; background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.25); border-radius: 10px; margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 720px; animation: fade-up 0.8s ease-out 0.27s both; }
.hero-icp-badge strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.hero-icp-icon { color: var(--accent); font-weight: 700; font-size: 14px; flex-shrink: 0; padding-top: 1px; }

/* Scarcity badge — violet only (no amber per design system rule "violet is the ONLY accent") */
.hero-scarcity { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.35); border-left: 3px solid rgba(139,92,246,0.7); border-radius: 8px; margin-bottom: 18px; font-size: 13px; color: rgba(255,255,255,0.92); line-height: 1.4; animation: fade-up 0.8s ease-out 0.28s both; box-shadow: 0 0 28px rgba(139,92,246,0.10); }
.hero-scarcity strong { color: rgba(255,255,255,1); font-weight: 700; }
.hero-scarcity-icon { font-size: 18px; flex-shrink: 0; }

/* Objection killer — "zero wymiany" + "AI nad systemami nie zamiast" (per feedback v2 + v3) */
.hero-objection-killer { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.22); border-left: 3px solid rgba(34,197,94,0.65); border-radius: 8px; margin-bottom: 24px; line-height: 1.5; max-width: 720px; animation: fade-up 0.8s ease-out 0.24s both; }
.hero-objection-killer strong { color: rgba(255,255,255,0.98); font-weight: 700; }
.hero-objection-icon { font-size: 20px; flex-shrink: 0; padding-top: 1px; }
.hero-objection-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hero-objection-bullet { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.5; padding-left: 14px; position: relative; }
.hero-objection-bullet::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: rgba(34,197,94,0.7); }
.hero-objection-bullet strong { color: rgba(34,197,94,0.98); font-weight: 800; }

/* Bullet group hierarchy — strong visual separation per feedback v4 ("pierwszy level się zlewa") */
.hero-bullets-group { margin-bottom: 22px; max-width: 640px; animation: fade-up 0.8s ease-out 0.26s both; padding: 14px 16px; border-left: 2px solid rgba(139,92,246,0.35); background: rgba(139,92,246,0.025); border-radius: 0 8px 8px 0; }
.hero-bullets-group:last-of-type { margin-bottom: 26px; }
.hero-bullets-label { display: inline-block; font-size: 11px; color: rgba(255,255,255,0.95); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; margin-bottom: 10px; padding: 3px 10px; background: rgba(139,92,246,0.18); border-radius: 4px; }
.hero-bullets-group .hero-bullets { margin: 0; gap: 9px; animation: none; }
.hero-bullets-group .hero-bullets li { font-size: 14px; color: rgba(255,255,255,0.82); }

/* CTA benefits row — checkmark-styled NIE disclaimer (per feedback v2 punkt 5) */
.hero-cta-benefits { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; margin-bottom: 12px; animation: fade-up 0.8s ease-out 0.32s both; }
.hero-cta-benefit { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.hero-cta-check { color: var(--accent); font-weight: 700; font-size: 14px; }

/* Report mockup v2 — simpler relative-positioning approach (fix per feedback 8.05 v6) */
.report-mockup {
    position: relative;
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 24px 60px -12px rgba(139,92,246,0.20), inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: visible;
}
.report-mockup::before {
    content: "";
    position: absolute;
    top: 0; left: 26px; right: 26px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.7), transparent);
}
.report-mockup-paper { display: flex; flex-direction: column; }
.report-mockup-tag {
    font-size: 10px;
    color: rgba(167,139,250,0.95);
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-weight: 700;
    margin-bottom: 14px;
}
.report-mockup-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    line-height: 1.18;
    color: rgba(255,255,255,0.96);
    margin: 0 0 10px;
    font-weight: 600;
}
.report-mockup-title-accent {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(167,139,250,0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}
.report-mockup-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 18px;
}
.report-mockup-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(139,92,246,0.45), transparent);
    margin: 0 0 14px;
}
.report-mockup-toc-label {
    font-size: 9px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 0 0 10px;
    font-weight: 700;
}
.report-mockup-toc {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0 0 16px;
}
.report-mockup-toc-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
}
.report-mockup-toc-num {
    color: rgba(167,139,250,0.9);
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    font-family: 'Lora', serif;
    font-size: 13px;
}
.report-mockup-toc-title {
    color: rgba(255,255,255,0.85);
    flex-shrink: 1;
    min-width: 0;
}
.report-mockup-toc-leader {
    flex: 1;
    min-width: 12px;
    border-bottom: 1px dotted rgba(255,255,255,0.22);
    transform: translateY(-3px);
}
.report-mockup-toc-page {
    color: rgba(255,255,255,0.55);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    flex-shrink: 0;
    width: 22px;
    text-align: right;
}
.report-mockup-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    text-align: center;
}
.report-mockup-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    padding: 5px 12px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 800;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 18px rgba(139,92,246,0.45);
    z-index: 2;
}
@media (max-width: 640px) {
    .report-mockup { padding: 22px 18px; }
    .report-mockup-title { font-size: 18px; }
    .report-mockup-toc-item { font-size: 11px; }
    .report-mockup-toc-num { font-size: 12px; width: 20px; }
}

.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; animation: fade-up 0.8s ease-out 0.3s both; flex-wrap: wrap; }
.hero-btn { padding: 14px 32px; background: var(--accent); color: #000; font-weight: 600; font-size: 15px; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; font-family: 'Inter', sans-serif; transition: all 0.3s; display: inline-block; }
.hero-btn:hover { background: var(--text-bright); transform: scale(1.02); }
.hero-btn:active { transform: scale(0.98); }
.hero-btn-note { font-size: 12px; color: var(--text-faint); }
.hero-stats { display: flex; gap: 48px; animation: fade-up 0.8s ease-out 0.5s both; padding-top: 48px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-line { width: 24px; height: 1px; background: rgba(139,92,246,0.3); margin-bottom: 8px; }

/* Hero trust mini — inline trust signals before CTA per audit fix #6 */
.hero-trust-mini { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 20px; max-width: 720px; font-size: 12px; color: rgba(255,255,255,0.55); animation: fade-up 0.8s ease-out 0.29s both; }
.hero-trust-mini-item strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-trust-mini-sep { color: rgba(255,255,255,0.2); }

/* Visual bridge between hero and "Na pierwszy rzut oka" — gradient line + hint */
.peek-bridge { display: flex; align-items: center; gap: 16px; max-width: 1280px; margin: 0 auto; padding: 32px 24px 16px; }
.peek-bridge-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), transparent); }
.peek-bridge-hint { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; white-space: nowrap; }

/* "Na pierwszy rzut oka" section — design system aligned (no inline styles) */
.peek-section { padding: 16px 24px 56px; max-width: 1148px; margin: 0 auto; }
.peek-heading { font-family: 'Lora', serif; font-size: clamp(24px, 3vw, 32px); color: rgba(229,229,229,0.95); margin: 0 0 28px; font-weight: 600; letter-spacing: -0.01em; }
.peek-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.peek-card { border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 24px; background: rgba(255,255,255,0.025); }
.peek-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px; font-weight: 700; }
.peek-card-rows { display: flex; flex-direction: column; gap: 10px; }
.peek-card-row { display: flex; align-items: baseline; gap: 10px; color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.5; }
.peek-card-row strong { color: rgba(229,229,229,1); font-weight: 600; }
.peek-muted { color: rgba(255,255,255,0.5); }
.peek-icon { flex-shrink: 0; font-size: 16px; }

.peek-badge { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid rgba(139,92,246,0.25); border-radius: 10px; background: rgba(139,92,246,0.05); font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.45; margin-bottom: 18px; }
.peek-badge strong { color: rgba(255,255,255,0.98); font-weight: 700; }
.peek-badge-icon-violet { color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 16px; }
.peek-badge-icon-emoji { flex-shrink: 0; font-size: 18px; }
.peek-badge-icp { border-left: 3px solid rgba(139,92,246,0.7); }
.peek-badge-scarcity { border-left: 3px solid rgba(139,92,246,0.7); }

.peek-trust-line { padding: 14px 18px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; text-align: center; }
.peek-trust-line strong { color: rgba(255,255,255,0.92); font-weight: 700; font-style: italic; }

@media (max-width: 768px) {
    .peek-grid { grid-template-columns: 1fr; gap: 16px; }
    .peek-section { padding: 8px 20px 40px; }
    .peek-heading { margin-bottom: 22px; }
    .peek-bridge { padding: 24px 20px 12px; }
}
.hero-stat-num { font-family: 'Lora', serif; font-size: clamp(24px, 3.5vw, 32px); color: var(--accent-text); margin-bottom: 6px; font-weight: 600; }
.hero-stat-label { font-size: 10px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 2px; }

@keyframes glow-float-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.05); } }
@keyframes glow-float-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,30px) scale(1.08); } }
@keyframes glow-float-3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-15px); } }
@keyframes fade-up { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }

@media (max-width: 768px) {
    .hero { padding: 120px 20px 72px; }
    .hero-stats { gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════════
 * HUB HOMEPAGE — 2-door choice cards (post-D142 architecture)
 * ═══════════════════════════════════════════════════════════════ */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; max-width: 1100px; animation: fade-up 0.8s ease-out 0.4s both; }
.hub-card { display: flex; flex-direction: column; padding: 36px 32px; border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; background: rgba(255,255,255,0.025); text-decoration: none; color: inherit; transition: all 0.3s ease; position: relative; overflow: hidden; }
.hub-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: linear-gradient(90deg, transparent, rgba(139,92,246,0.55), transparent); opacity: 0; transition: opacity 0.3s ease; }
.hub-card:hover { border-color: rgba(139,92,246,0.45); background: rgba(139,92,246,0.04); transform: translateY(-2px); box-shadow: 0 24px 60px -20px rgba(139,92,246,0.25); }
.hub-card:hover::before { opacity: 1; }
.hub-card-b2b { border-color: rgba(139,92,246,0.30); }
.hub-card-content { border-color: rgba(255,255,255,0.12); }
.hub-card-kicker { font-size: 11px; color: rgba(167,139,250,0.95); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 14px; }
.hub-card-title { font-family: 'Lora', serif; font-size: clamp(24px, 2.6vw, 30px); color: rgba(255,255,255,0.96); margin: 0 0 14px; font-weight: 600; line-height: 1.15; }
.hub-card-body { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0 0 20px; }
.hub-card-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.hub-card-bullets li { font-size: 13px; color: rgba(255,255,255,0.78); display: flex; align-items: baseline; gap: 8px; }
.hub-bullet-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.hub-card-cta { font-size: 15px; color: rgba(255,255,255,0.95); font-weight: 600; padding: 12px 20px; background: var(--accent); color: #0a0a0a; border-radius: 9999px; text-align: center; transition: all 0.3s ease; margin-top: auto; }
.hub-card:hover .hub-card-cta { background: rgba(255,255,255,0.95); }
.hub-card-stats { font-size: 11px; color: rgba(255,255,255,0.45); text-align: center; margin-top: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
.hub-footer-link { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 32px; line-height: 1.7; }
.hub-footer-link a { color: rgba(167,139,250,0.85); text-decoration: none; }
.hub-footer-link a:hover { color: rgba(167,139,250,1); text-decoration: underline; }
@media (max-width: 768px) {
    .hub-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
    .hub-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
 * COMPATIBILITY OVERRIDES — sync existing Tailwind-utility pages
 * (newsletter PL/EN, audyt PL) z visual values z /en/audit/.
 * Bez zmian markup — tylko visual values match.
 * ═══════════════════════════════════════════════════════════════ */

/* Section container max-width: 5xl (1024px) → 1100px */
section > .max-w-5xl {
    max-width: 1100px !important;
}

/* Section padding: py-24 (96px) zostaje (already match), .px-6 (24px) zostaje */

/* Kickers: text-violet-400 text-xs uppercase tracking-widest →
 * matching .section-kicker (font-size 11px, letter-spacing 2.5px) */
.text-violet-400.uppercase.tracking-widest {
    color: var(--accent-text) !important;
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
}

/* Section H2: font-serif text-4xl md:text-5xl →
 * matching .section-title (clamp 28-44px max) */
section h2.font-serif {
    font-size: clamp(28px, 4.5vw, 44px) !important;
    line-height: 1.1 !important;
    color: var(--text-bright) !important;
}

/* Hero H1 — same cap as homepage, leave room dla bigger headlines */
.relative h1.font-serif {
    font-size: clamp(32px, 5.5vw, 52px) !important;
    line-height: 1.05 !important;
}

/* Cards: rounded-xl (12px) → 20px wider corners + softer borders */
.border.border-white\/10.rounded-xl {
    border-radius: 20px !important;
    border-color: var(--border-card) !important;
    background: var(--card-bg) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.border.border-white\/10.rounded-xl:hover {
    background: var(--card-hover) !important;
    border-color: rgba(139,92,246,0.15) !important;
    transform: translateY(-4px) !important;
}

/* Card "labels" (h3 inside cards) — Lora 17px violet, matching EN audit */
.border.rounded-xl h3.font-serif.text-xl {
    color: var(--accent-text) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}

/* Section subtitles match — color + line-height */
section p.text-white\/60.leading-relaxed {
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
}

/* ═══════════════════════════════════════ NAV (canonical, shared across pages) */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(10,10,10,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Lora', serif; font-size: 19px; letter-spacing: -0.3px; color: var(--text); text-decoration: none; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.7; }
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 13px; }
.nav-link { color: var(--text-muted); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.nav-link:hover { color: var(--text-bright); }
.nav-link:hover::after { width: 100%; }
.nav-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.1); }
.nav-muted { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.nav-muted:hover { color: var(--text-muted); }
.nav-lang { color: var(--text-soft); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.5px; border: 1px solid var(--border-med); padding: 4px 12px; border-radius: 20px; transition: all 0.3s; }
.nav-lang:hover { color: var(--text-bright); border-color: var(--accent-dim); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-muted); margin: 4px 0; transition: all 0.3s; }
.nav-mobile { display: none; position: fixed; top: 53px; left: 0; right: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(16px); padding: 24px; border-bottom: 1px solid var(--border); flex-direction: column; gap: 16px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 15px; padding: 8px 0; transition: color 0.2s; }
.nav-mobile a:hover { color: var(--text-bright); }
.nav-mobile .mob-sep { border-top: 1px solid var(--border); margin: 4px 0; }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}
