/* ============================================================
   Eurokreator — 2026 brand skin ("Orange Eurokreator" design system)
   Loaded AFTER tailwind.css / custom.css / site.css: it retints the
   existing component classes to the brandbook world (warm paper,
   Horizon Orange accent, Helvetica Neue LT Pro + Playfair italic)
   and adds the new brand components (aurora hero, glass pills,
   manifesto interlude, dark stat band, map chips).
   Tailwind is compiled with important:true, so utility retints below
   must also carry !important to win the cascade.
   ============================================================ */

:root {
    /* Brand palette — tokens from the design system (tokens/colors.css) */
    --brand-orange: #FA6A24;          /* Future 500 — the only chromatic accent */
    --brand-orange-hover: #C2410C;    /* Beyond 700 — hover / text-safe orange */
    --brand-orange-light: #FFF1E8;    /* soft wash for badges / hovers */
    --brand-orange-50: rgba(250, 106, 36, 0.08);
    --brand-graphite: #141210;        /* warm ink */
    --brand-graphite-light: #4A4038;

    --ink: #141210;
    --ink-2: #5b524a;                 /* warm body grey */
    --ink-3: #8a8079;                 /* muted meta */
    --paper: #fffcf7;                 /* Canvas */
    --paper-alt: #faf7f2;             /* section-alt cream */
    --paper-deep: #f6f0e7;            /* manifesto cream */
    --greige: #e3dccf;                /* hero field */
    --stone: #b09877;                 /* line-art tan */
    --mist: #e0d8cd;
    --line: #eae4db;                  /* hairlines */
    --dark: #141210;
    --dark-deep: #0a0908;

    /* Warm-shift the grey scale referenced across custom.css */
    --gray-50: #faf7f2;
    --gray-100: #f2ede4;
    --gray-200: #eae4db;
    --gray-300: #d9d1c7;
    --gray-400: #9a8d7c;
    --gray-500: #6f6355;
    --gray-600: #5b524a;
    --gray-700: #453d36;
    --gray-800: #262220;
    --gray-900: #141210;

    --radius-sm: 0.5rem;
    --radius-md: 0.625rem;
    --radius-lg: 0.875rem;            /* cards: 14px */
    --radius-xl: 0.875rem;
    --radius-2xl: 1.125rem;

    --shadow-sm: 0 2px 8px rgba(8, 8, 8, 0.05);
    --shadow-md: 0 12px 32px -12px rgba(30, 30, 44, 0.18);
    --shadow-lg: 0 28px 70px -28px rgba(30, 30, 44, 0.28);
    --shadow-xl: 0 28px 70px -28px rgba(30, 30, 44, 0.28);
    --glow: 0 0 80px -10px rgba(250, 106, 36, 0.40);

    /* Signature "energy" gradients — straight from the design system (tokens).
       The hero glow must read as THIS centered warm burst, not a corner haze. */
    --gradient-beyond-energy: radial-gradient(circle at 50% 48%,
        #ff5900 0%, #fa6a24 20%, rgba(250, 106, 36, 0.55) 42%,
        rgba(242, 234, 223, 0.25) 60%, rgba(255, 252, 247, 0) 74%);
    --gradient-silent-energy: radial-gradient(circle at 50% 48%,
        #c9b393 0%, #b09877 26%, rgba(176, 152, 119, 0.35) 50%, rgba(255, 252, 247, 0) 72%);
    --gradient-future-wash: linear-gradient(120deg, #fa6a24 0%, #c2410c 100%);

    /* Klub Liderów — the "Eurocreators VIP" brand world: stark black & white,
       cool cinematic, a restrained platinum metallic in place of the old gold. */
    --vip-black: #000000;
    --vip-surface: #0b0b0d;
    --vip-surface-2: #101014;
    --vip-line: rgba(255, 255, 255, 0.12);
    --vip-text: rgba(255, 255, 255, 0.66);
    --vip-platinum: #e4ded3;
    --vip-platinum-dim: rgba(228, 222, 211, 0.55);

    --font-sans: 'Helvetica Neue LT Pro', 'Helvetica Neue', Helvetica, 'DM Sans', Arial, sans-serif;
    --font-serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;

    --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 1rem;
    line-height: 1.62;
}
@media (min-width: 768px)  { body { font-size: 1rem; } }
@media (min-width: 1280px) { body { font-size: 1.0625rem; line-height: 1.62; } }

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -0.015em;
    color: var(--ink);
}
h1 em, h2 em, h3 em, .text-display em, .serif-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
}

::selection { background: var(--brand-orange); color: #fff; }

/* Retint the cold Tailwind utilities used across templates (utilities are
   emitted with !important, so these need !important + later cascade). */
.text-gray-400 { color: var(--ink-3) !important; }
.text-gray-500 { color: var(--ink-2) !important; }
.text-gray-600 { color: var(--ink-2) !important; }
.text-gray-700 { color: var(--gray-700) !important; }
.text-gray-900, .text-brand-graphite { color: var(--ink) !important; }
.text-brand-orange { color: var(--brand-orange-hover) !important; }
.bg-white { background-color: #fff !important; }
.bg-gray-50 { background-color: var(--paper-alt) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.border-gray-100 { border-color: #f0ebe2 !important; }
.border-gray-200 { border-color: var(--line) !important; }
.border-gray-300 { border-color: var(--gray-300) !important; }
.hover\:bg-gray-50:hover { background-color: var(--paper-alt) !important; }
.hover\:bg-gray-100:hover { background-color: var(--gray-100) !important; }

/* ── Overline — the section opener recipe ── */
.overline,
.section-heading .overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brand-orange-hover);
}
.section-heading .overline::before,
.section-heading .overline::after { display: none; }

.section-heading h2 {
    font-size: clamp(1.875rem, 3.4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
}
.text-heading-1 {
    font-weight: 300 !important;
    letter-spacing: -0.015em !important;
}

/* ── Buttons — one pill grammar ── */
.btn {
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.625rem;
    border-radius: 999px;
    border-width: 1px;
    gap: 0.5rem;
}
.btn-primary {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-orange-hover);
    border-color: var(--brand-orange-hover);
    transform: none;
    box-shadow: 0 10px 26px -8px rgba(250, 106, 36, 0.55);
}
.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}
.btn-secondary:hover {
    border-color: var(--ink);
    background: #fff;
}
.btn-sm { padding: 0.5625rem 1.125rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.9375rem 1.875rem; font-size: 1rem; }

/* ── Cards ── */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.875rem;
    box-shadow: var(--shadow-sm);
}
.card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.card-flat { background: var(--paper-alt); }
.card-flat:hover { background: var(--gray-100); }

/* ── Badges ── */
.badge {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3125rem 0.625rem;
}
.badge-orange { background: var(--brand-orange-light); color: var(--brand-orange-hover); }
.badge-purple { background: #efeaff; color: #7c5cff; }
/* Retint the leftover cold funnel tokens to warm, paper-compatible hues
   (notatnik cycles need blue/green to stay DISTINCT, just not cold). */
.badge-blue  { background: #eef3fb; color: #3a6ea8; }
.badge-green { background: #edf5ec; color: #4a7c59; }

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--dark); color: rgba(255, 255, 255, 0.86); }
/* White cards inside dark sections keep ink titles (custom.css whitens
   .section-dark h3 globally, which made card titles white-on-white). */
.section-dark .card h3, .section-dark .card strong { color: var(--ink); }

/* ── Header: transparent over the page top → solid warm paper on scroll.
   (No backdrop blur — it caused scroll jank on this fixed header before.) ── */
.site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease-standard), border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(255, 253, 249, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -20px rgba(0, 0, 0, 0.4);
}
.ek-header-nav { border-top: 0; }
.nav-link { font-size: 0.9375rem; color: var(--ink-2); }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after { background: var(--brand-orange); height: 2px; }

/* ── Hairline trust band ── */
.ek-trustbar {
    padding: 2.125rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-alt);
}

/* ── Glass pills (hero meta chips) ── */
.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8125rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 8px 30px -18px rgba(120, 60, 20, 0.4);
    white-space: nowrap;
}
.glass-pill .rule {
    width: 56px;
    height: 1px;
    background: rgba(20, 18, 16, 0.22);
}

/* ── Aurora hero (home) ── */
/* The hero runs underneath the transparent fixed header — drop the spacer
   on pages that open with it (graceful: without :has() a paper gap shows). */
body:has(.aurora) .ek-header-spacer { display: none; }

.aurora {
    position: relative;
    min-height: max(560px, 92vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Warm cream base — the energy itself lives in .aurora-glow below so it can
       sit BEHIND the torus (z-0) while the canvas (z-1) draws over it. */
    background: radial-gradient(125% 105% at 50% 30%, #fff8ef 0%, #f5ebdc 52%, #ece1d2 100%);
}
.aurora-fx {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
/* The signature "Beyond energy" burst — centered behind the torus, exactly as
   the design layout renders it (was a weak bottom-right haze before). Hottest
   core rides the upper third so the centred heading stays legible over it. */
.aurora-glow {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: min(1180px, 116vw);
    height: min(1180px, 116vw);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
        rgba(255, 89, 0, 0.32) 0%,
        rgba(250, 106, 36, 0.24) 18%,
        rgba(250, 106, 36, 0.11) 40%,
        rgba(242, 234, 223, 0.05) 60%,
        transparent 72%);
    filter: blur(26px);
    pointer-events: none;
    z-index: 0;
}
.aurora-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 9.5rem 0 6.5rem;
    text-align: center;
}
.aurora-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}
.aurora h1 {
    font-weight: 100;
    font-size: clamp(3.25rem, 9.5vw, 8.75rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--ink);
}
.aurora h1 em { font-weight: 500; color: var(--brand-orange-hover); }
.aurora-sub {
    font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 36rem;
    margin: 1.625rem auto 0;
}
.aurora-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
    margin-top: 2.375rem;
}
.aurora .ek-face-strip { margin-top: 2.125rem; }
.aurora-cue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.aurora-cue .line {
    width: 44px;
    height: 1px;
    background: rgba(20, 18, 16, 0.25);
    position: relative;
    overflow: hidden;
}
.aurora-cue .line::after {
    content: "";
    position: absolute;
    left: -44px;
    top: 0;
    width: 44px;
    height: 1px;
    background: var(--brand-orange);
    animation: aurora-cue 2.4s var(--ease-standard) infinite;
}
@keyframes aurora-cue { 0% { left: -44px; } 60%, 100% { left: 44px; } }

/* Hero entrance stagger */
@keyframes hero-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.aurora-chips { animation: hero-up 0.8s var(--ease-emphasis) both 0.05s; }
.aurora h1    { animation: hero-up 0.9s var(--ease-emphasis) both 0.16s; }
.aurora-sub   { animation: hero-up 0.8s var(--ease-emphasis) both 0.32s; }
.aurora-ctas, .aurora .ek-face-strip { animation: hero-up 0.8s var(--ease-emphasis) both 0.46s; }
@media (prefers-reduced-motion: reduce) {
    .aurora-chips, .aurora h1, .aurora-sub, .aurora-ctas, .aurora .ek-face-strip { animation: none; }
    .aurora-cue .line::after { animation: none; }
}
@media (max-width: 640px) {
    .aurora { min-height: 78vh; }
    .aurora-inner { padding: 8rem 0 4.5rem; }
    .aurora-cue { display: none; }
    .glass-pill .rule { width: 28px; }
}

/* ── Floating frosted-glass hero card (glassmorphism) ── */
.aurora-card {
    position: absolute;
    right: max(1.5rem, 4vw);
    bottom: clamp(3.5rem, 13vh, 9rem);
    z-index: 5;
    width: 21rem;
    max-width: calc(100vw - 3rem);
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.52);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    text-align: left;
    animation: hero-up 0.8s var(--ease-emphasis) both 0.6s;
}
.aurora-card-lab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-orange-hover);
    margin: 0 0 0.875rem;
}
.aurora-card-row { display: flex; gap: 0.875rem; align-items: center; }
.aurora-card-title {
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.32;
    color: var(--ink);
}
.aurora-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-orange-hover);
    transition: gap 0.2s var(--ease-standard);
}
.aurora-card-cta:hover { gap: 0.625rem; }
@media (max-width: 1100px) { .aurora-card { display: none; } }
@media (prefers-reduced-motion: reduce) { .aurora-card { animation: none; } }

/* ── Aurora page hero — the compact subpage opener in the home hero's grammar:
   warm cream field + centered energy glow running under the transparent header,
   thin display H1 with the single Playfair-italic accent, ink-2 lead. ── */
body:has(.aurora-page):not(:has(.ek-flash-wrap)) .ek-header-spacer { display: none; }
/* When a flash banner renders above the hero the spacer stays — drop the
   header clearance so the banner + hero don't stack a double gap. */
body:has(.ek-flash-wrap) .aurora-page { padding-top: 3.25rem; }

.aurora-page {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 7.75rem 0 4.25rem;
    background: radial-gradient(125% 105% at 50% 30%, #fff8ef 0%, #f5ebdc 52%, #ece1d2 100%);
}
@media (min-width: 768px)  { .aurora-page { padding: 9rem 0 4.75rem; } }
@media (min-width: 1280px) { .aurora-page { padding: 11rem 0 5.25rem; } }
.aurora-page .aurora-glow {
    width: min(880px, 112vw);
    height: min(880px, 112vw);
    top: 36%;
    opacity: 0.85;
}
.aurora-page-inner { position: relative; z-index: 2; }
.aurora-page h1 {
    font-weight: 100;
    font-size: clamp(2.875rem, 6.5vw, 5.75rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
}
.aurora-page h1 em { font-weight: 500; color: var(--brand-orange-hover); }
.aurora-page-sub {
    font-size: clamp(1.125rem, 1.7vw, 1.375rem);
    font-weight: 500;
    color: var(--brand-orange-hover);
    margin: 1.125rem 0 0;
}
.aurora-page-lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 42rem;
    margin: 1.25rem auto 0;
}

/* Left-aligned variant (bon: copy beside the ticket graphic). */
.aurora-page-left { text-align: left; }
.aurora-page-left .aurora-page-lead { margin-left: 0; margin-right: 0; }

/* Entrance stagger — mirrors the home hero. */
.aurora-page .overline { animation: hero-up 0.7s var(--ease-emphasis) both 0.05s; }
.aurora-page h1        { animation: hero-up 0.8s var(--ease-emphasis) both 0.14s; }
.aurora-page-sub, .aurora-page-lead { animation: hero-up 0.7s var(--ease-emphasis) both 0.28s; }
.aurora-page .ek-ticket { animation: hero-up 0.8s var(--ease-emphasis) both 0.34s; }
@media (prefers-reduced-motion: reduce) {
    .aurora-page .overline, .aurora-page h1, .aurora-page-sub, .aurora-page-lead,
    .aurora-page .ek-ticket { animation: none; }
}

/* ── "Dzieje się" widgets: 2-up event grid + calendar aside (design port) ── */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 20rem;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 980px) { .events-grid { grid-template-columns: 1fr; } }
.events-grid .car {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 620px) { .events-grid .car { grid-template-columns: 1fr; } }
.ev-card { overflow: hidden; display: flex; flex-direction: column; padding: 0; }
.ev-card img { width: 100%; height: 172px; object-fit: cover; object-position: center 10%; }
.ev-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.ev-top { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem; }
.ev-when { font-size: 0.8125rem; color: var(--ink-3); line-height: 1.4; }
.ev-title { font-weight: 500; font-size: 1.125rem; line-height: 1.25; margin: 0 0 0.5rem; }
.ev-title a { transition: color 0.2s var(--ease-standard); }
.ev-title a:hover { color: var(--brand-orange-hover); }
.ev-desc {
    font-size: 0.875rem;
    color: var(--ink-2);
    margin: 0 0 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ev-seats { font-size: 0.75rem; color: var(--ink-3); margin: 0 0 0.75rem; }
.ev-seats.last { color: #c0341c; font-weight: 600; }
.ev-actions { display: flex; align-items: center; gap: 0.625rem; margin-top: auto; }

/* ── Statement + feed section (home, below the aurora) ── */
.statement h2 {
    font-weight: 300;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

/* ── Live feed card ── */
.ek-live-dot { background: var(--brand-orange); }
.ek-live-dot::after { background: var(--brand-orange); }
.ek-hero-feed-card:hover { background: var(--brand-orange-light); }
.ek-date-badge {
    background: var(--dark);
    border-radius: 0.625rem;
}

/* ── Manifesto interlude ── */
.manifesto {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.manifesto::after {
    content: "";
    position: absolute;
    right: -14%;
    bottom: -46%;
    width: 58vw;
    height: 58vw;
    background: radial-gradient(circle, rgba(255, 89, 0, 0.40), rgba(250, 106, 36, 0.12) 46%, transparent 68%);
    filter: blur(38px);
    pointer-events: none;
}
.manifesto .txt {
    position: relative;
    z-index: 2;
    max-width: 58rem;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    font-size: clamp(1.375rem, 2.5vw, 2.125rem);
    line-height: 1.44;
    color: var(--ink);
}
.manifesto .txt em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--brand-orange-hover);
}

/* ── Dark stat band ── */
.section-dark .stat-number {
    font-family: var(--font-sans);
    font-size: clamp(2.375rem, 4.6vw, 3.625rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #fff;
}
.section-dark .stat-number .u { color: var(--brand-orange); }
.section-dark .stat-label {
    font-size: 0.84375rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
}

/* ── Knowledge-map teaser: floating glass chips over line-art canvas ── */
.mapviz {
    position: relative;
    height: 420px;
}
.mapviz canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.map-chip {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: 0 10px 26px -16px rgba(120, 60, 20, 0.5);
    white-space: nowrap;
    z-index: 2;
    transition: transform 0.3s var(--ease-standard), box-shadow 0.3s;
}
.map-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-orange);
    box-shadow: 0 0 10px 1px rgba(250, 106, 36, 0.8);
}
.map-chip:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 16px 34px -14px rgba(120, 60, 20, 0.6);
}
.map-chip.hub {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    font-weight: 600;
    padding: 0.8125rem 1.375rem;
    font-size: 0.9375rem;
}
.map-chip.hub::before { display: none; }
@keyframes chip-float { 0%, 100% { margin-top: 0; } 50% { margin-top: -7px; } }
.mapviz .map-chip { animation: chip-float 6s ease-in-out infinite; }
.mapviz .map-chip:nth-child(3n)   { animation-delay: 1.6s; }
.mapviz .map-chip:nth-child(3n+1) { animation-delay: 3.2s; }
.mapviz .map-chip.hub { animation: none; }
@media (prefers-reduced-motion: reduce) { .mapviz .map-chip { animation: none; } }
/* Small screens: absolute chip positions would clip at the edges — reflow the
   teaser as a centered chip cloud with the hub on top. */
@media (max-width: 640px) {
    .mapviz {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        gap: 0.5rem;
        padding: 1.25rem 0 0.5rem;
    }
    .mapviz canvas { display: none; }
    .map-chip {
        position: static !important;
        transform: none;
        animation: none !important;
        font-size: 0.75rem;
        padding: 0.4375rem 0.75rem;
    }
    .map-chip:hover { transform: none; }
    .map-chip.hub {
        order: -1;
        flex-basis: 100%;
        max-width: max-content;
        margin: 0 auto 0.375rem;
        font-size: 0.875rem;
        padding: 0.625rem 1.125rem;
    }
}

/* ── Kierunki: the "Razem" refrain + quote band + catalog card links ── */
.razem {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--brand-orange-hover);
}
.quote-band { position: relative; overflow: hidden; }
.quote-band::after {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -50%;
    width: 48vw;
    height: 48vw;
    background: radial-gradient(circle, rgba(255, 89, 0, 0.28), rgba(250, 106, 36, 0.08) 46%, transparent 68%);
    filter: blur(38px);
    pointer-events: none;
}
.quote-band > * { position: relative; z-index: 1; }
.quote-band-title {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.015em;
}
.quote-band-title em { color: var(--brand-orange); }
.quote-band-text {
    font-weight: 300;
    font-size: clamp(1.125rem, 1.8vw, 1.4375rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}
/* Depth band: the partnership photo bleeds off the left viewport edge and
   dissolves into the dark toward the centre; the quote answers on the right.
   NOTE: .depth-band-photo also carries .photo-warm (position:relative, defined
   later in this file). The positioning is scoped to `.depth-band .depth-band-photo`
   so it out-specifies .photo-warm without needing !important — otherwise the photo
   falls back into the flex flow, collapses to ~30% and strands the copy far right.
   (The multi-agent review's db4872e independently applied the same specificity
   fix; this keeps that fix and adds the full-height photo + fade seam.) */
.depth-band {
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 4.5rem 0;
}
.depth-band .depth-band-photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}
.depth-band .depth-band-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Cinematic seam: the photo fades into the section dark before the copy begins,
   so there is no dead rectangle between the image and the text. */
.depth-band-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%, transparent 45%,
        rgba(20, 18, 16, 0.55) 74%, var(--dark) 100%);
    pointer-events: none;
    z-index: 1;
}
.depth-band-glow {
    position: absolute;
    left: -6%;
    top: 4%;
    width: 36%;
    height: 74%;
    background: radial-gradient(circle at 45% 45%, rgba(255, 89, 0, 0.38), transparent 66%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}
.depth-band-copy {
    margin-left: auto;
    width: min(44%, 33rem);
    text-align: left;
    position: relative;
    z-index: 2;
}
.depth-band.quote-band::after { left: auto; right: -10%; }
@media (max-width: 900px) {
    .depth-band { display: block; min-height: 0; padding: 0 0 3.5rem; }
    .depth-band .depth-band-photo {
        position: relative;
        width: 100%;
        height: 280px;
        top: 0;
        border-radius: 0;
        margin-bottom: 2.5rem;
    }
    .depth-band-photo::after { display: none; }
    .depth-band-glow { display: none; }
    .depth-band-copy { width: auto; margin: 0; }
}

.ek-cardlink {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-orange-hover);
}
.ek-cardlink:hover { text-decoration: underline; }
#cat-filter .btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* ── Expert voices / interview quotes — the serif editorial voice ── */
.voice-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.5;
    color: var(--ink);
}

/* ── Klub Liderów: the "Eurocreators VIP" brand world — stark black & white,
   cool cinematic, Playfair-italic accent, restrained platinum in place of gold.
   (Rafał: "sekcja VIP jest inna niż zaprojektowaliśmy — trzymajmy się tamtego
   brand world.") The whole tab runs at night. ── */
.ek-vip-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(70% 60% at 50% 2%, rgba(150, 160, 185, 0.10), transparent 60%),
        radial-gradient(120% 120% at 50% 120%, #101014 0%, #000 62%);
    color: #fff;
}
.ek-vip-hero > * { position: relative; z-index: 2; }
.ek-vip-hero h1, .ek-vip-hero .text-display { color: #fff; }
/* White italic accent (like the design's "Lead beyond." / "230 metrów"), not gold. */
.ek-vip-hero h1 em, .ek-vip-hero .text-display em { color: #fff; }
.ek-vip-hero .overline { color: var(--vip-platinum); }

/* Hero photo: cinematic B&W — desaturated, fading in from the right under a veil.
   (.ek-vip-hero prefix keeps this stronger than the later .photo-warm rule.) */
.ek-vip-hero .vip-hero-ph {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    z-index: 0;
    opacity: 0.5;
    filter: grayscale(1) contrast(1.06) brightness(0.9);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
    mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.ek-vip-hero .vip-hero-ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
@media (max-width: 900px) { .ek-vip-hero .vip-hero-ph { width: 78%; opacity: 0.28; } }

/* Neuroxa lockup — now platinum/white (design-system rule; was gold). */
.vip-lockup {
    font-family: 'Neuroxa', var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.34em;
    color: var(--vip-platinum);
    margin-bottom: 0.875rem;
    opacity: 0.85;
}

/* Night sections: cool black depths with hairline seams. */
.vip-dark {
    background: var(--vip-black);
    color: var(--vip-text);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vip-dark.vip-lift { background: var(--vip-surface); }
.vip-dark h2, .vip-dark h3, .vip-dark strong, .vip-dark .text-heading-1 { color: #fff; }
.vip-dark .text-gray-500, .vip-dark .text-gray-600, .vip-dark .text-gray-700 { color: var(--vip-text) !important; }
.vip-dark .text-brand-graphite { color: #fff !important; }
/* Monochrome icons in the VIP world (were orange). */
.vip-dark .text-brand-orange, .ek-vip-hero .text-brand-orange { color: var(--vip-platinum) !important; }
.vip-dark .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--vip-line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.vip-dark .card:hover {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.8);
}
.vip-dark blockquote { color: rgba(255, 255, 255, 0.82) !important; }
.vip-dark .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}
.vip-dark .btn-secondary:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.vip-dark .border-brand-orange { border-color: var(--vip-platinum) !important; }

/* Paszport Lidera — platinum foil on graphite (was gold on brown). */
.ek-passport {
    background: linear-gradient(160deg, #17171a 0%, #101012 70%, #0a0a0c 100%) !important;
}
.vip-dark .ek-passport { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 40px 90px -30px rgba(0, 0, 0, 0.85); }
.ek-passport-inner { border-color: rgba(228, 222, 211, 0.5) !important; color: var(--vip-platinum) !important; }
.ek-passport-name, .ek-passport-price { color: #fff !important; font-family: var(--font-serif) !important; }
.ek-passport-sub { color: var(--vip-platinum-dim) !important; }
.ek-passport-price { border-top-color: rgba(228, 222, 211, 0.32) !important; }

/* The VIP night hero runs under the transparent fixed header — flip the logo and
   nav to white so they read on black. Once the header goes solid on scroll
   (.scrolled → warm paper) they return to ink automatically. */
/* ── Klub Liderów keeps the shared nav (connected to the site) but runs it
   COMPLETELY DARK — in both the transparent-top and scrolled states, never the
   light paper. The "eurokreator vip" wordmark replaces the default logo. ── */
.ek-logo-vip { display: none; }
body:has(.ek-vip-hero) .ek-logo-default { display: none; }
body:has(.ek-vip-hero) .ek-logo-vip { display: block; }

body:has(.ek-vip-hero) .site-header.scrolled {
    background: rgba(6, 6, 8, 0.82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.10);
}
/* logo → white, nav → light, in BOTH header states (!important beats Tailwind's
   important:true .text-gray-500 / .text-brand-graphite utilities on the nav). */
body:has(.ek-vip-hero) .site-header .ek-header-top img { filter: brightness(0) invert(1); }
body:has(.ek-vip-hero) .site-header .nav-link { color: rgba(255, 255, 255, 0.62) !important; }
body:has(.ek-vip-hero) .site-header .nav-link:hover,
body:has(.ek-vip-hero) .site-header .nav-link.active { color: #fff !important; }
body:has(.ek-vip-hero) .site-header .ek-header-top a[href^="tel"] { color: rgba(255, 255, 255, 0.78) !important; }

/* Full-bleed: the VIP hero runs UNDER the transparent header (like the design). */
body:has(.ek-vip-hero) .ek-header-spacer { display: none; }
.ek-vip-hero-lead { padding-top: 9.5rem !important; padding-bottom: 6rem !important; }
@media (max-width: 640px) { .ek-vip-hero-lead { padding-top: 7.5rem !important; } }

/* ── "01 — Koncept" editorial hero: statement + Playfair accent over the
   white filament torus, with a scroll cue. Matches the design's KONCEPT screen. ── */
.vip-num {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 2.25rem;
}
.vip-koncept { min-height: 100vh; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.vip-koncept-copy { position: relative; z-index: 3; }
.vip-koncept-h {
    font-weight: 300;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 20ch;
    margin: 0 auto;
}
.vip-koncept-h em { color: #fff; }
.vip-koncept-torus {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 70%;
    z-index: 1;
    pointer-events: none;
}
.vip-cue {
    position: absolute;
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) { .vip-koncept { min-height: 92vh; } .vip-koncept-torus { height: 58%; } }

/* Numbered section eyebrow for the rest of the VIP landing (02, 03, …). */
.vip-section-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 1rem;
}

/* ── Process axis ("Razem" / bon steps) — retint from the legacy #E87A1D ── */
.ek-process::before {
    background: repeating-linear-gradient(90deg, rgba(250, 106, 36, 0.45) 0 8px, transparent 8px 16px);
    top: 2.75rem; /* align the dashed axis with the circle centers (1.5rem pad + 1.25rem radius) */
}
.ek-process-step {
    border-color: var(--line);
    border-radius: 0.875rem;
    box-shadow: var(--shadow-sm);
}
.ek-process-no, .ek-tier-x {
    background: var(--brand-orange);
    font-weight: 500;
}

/* ── Voucher ticket — graphite/orange brand world (was brown + gold serif) ── */
.ek-ticket {
    font-family: var(--font-sans);
    box-shadow: var(--shadow-lg);
}
.ek-ticket-main {
    background: linear-gradient(150deg, #262220 0%, #141210 55%, #0a0908 100%);
}
.ek-ticket-brand { color: var(--brand-orange); font-weight: 600; }
.ek-ticket-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}
.ek-ticket-sub { color: rgba(255, 252, 247, 0.6); }
.ek-ticket-amount { font-weight: 300; letter-spacing: -0.02em; }
.ek-ticket-amount span { color: var(--brand-orange); }
.ek-ticket-pill {
    background: rgba(250, 106, 36, 0.16);
    border-color: rgba(250, 106, 36, 0.45);
}
.ek-ticket-foot { color: rgba(255, 252, 247, 0.45); }
.ek-ticket-stub { background: #fff; color: var(--ink); }
.ek-ticket-stub-title { color: var(--brand-orange-hover); border-bottom-color: var(--line); font-weight: 600; }
.ek-ticket-dots {
    background: repeating-linear-gradient(180deg, var(--gray-300) 0 3px, transparent 3px 7px);
}
.ek-ticket-stub-foot { border-top-color: var(--line); }
.ek-ticket-stub-foot em { color: var(--ink-3); }

/* ── Forms — hairline warm fields ── */
.form-input, .form-textarea, .form-select {
    border-color: var(--gray-300);
    border-radius: 0.625rem;
    background: #fff;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(250, 106, 36, 0.12);
}

/* ── Footer — warm near-black ── */
.site-footer { background: var(--dark); }
.site-footer .ek-soc { background: rgba(255, 255, 255, 0.08); }
.site-footer .ek-soc:hover { background: rgba(255, 255, 255, 0.15); }

/* ── Mini month calendar — retint the cold grays ── */
.ek-cal-h { color: var(--ink-3); }
.ek-cal-d { color: var(--ink-2); }
.ek-cal-d.today { background: var(--gray-100); }
.ek-cal-d.has-event a { color: var(--brand-orange-hover); }
.ek-cal-d.has-event::after { background: var(--brand-orange); }

/* ── Knowledge-map card — warm legend text ── */
.ek-graph-legend { color: var(--ink-2); }

/* ── Spotkajmy się contact paths — warm the AI indigo + the initial disc ── */
.ek-avail-ai { background: #efeaff; color: #7c5cff; }
.ek-path-ai { background: #efeaff; color: #7c5cff; }
.ek-path-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange-light);
    color: var(--brand-orange-hover);
    font-weight: 500;
    line-height: 1;
}

/* ── Prose lists — restore markers (blank ::marker made bullets invisible) ── */
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

/* ── Notatnik: serif editorial titles ── */
.notatnik-serif, .notatnik-serif a {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
}

/* ── Photo treatment: warm editorial grade for real photography ── */
.photo-warm { position: relative; }
.photo-warm img { filter: saturate(0.92) sepia(0.06) contrast(1.02); }

/* ── Depth section (dark showcase w/ left-bleed photo + glass) ── */
.depth {
    position: relative;
    background: var(--dark-deep);
    color: #fff;
    overflow: hidden;
}
.depth-glow {
    position: absolute;
    left: -6%;
    top: 2%;
    width: 34%;
    height: 72%;
    background: radial-gradient(circle at 45% 45%, rgba(255, 89, 0, 0.42), transparent 66%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}
.glass-card {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.09);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}

/* ── Scroll reveal timing (element opt-in via .animate-on-scroll) ── */
.animate-on-scroll {
    transition-duration: 0.7s;
    transition-timing-function: var(--ease-emphasis);
}

/* ── Chat widget + sticky CTA accents ── */
.ek-chat-toggle { background: var(--brand-orange); }
.ek-chat-toggle:hover { background: var(--brand-orange-hover); }
