/*
 * nxtlvl-v2.css - Next Level landing page (v2 DNA)
 * Migracja z nxtlvl.css (warmth brick) + inline-styles-extracted.css is-* klas
 * Zachowany HTML 1:1, tylko CSS rebuild.
 *
 * DNA: Geist sans + Instrument Serif italic + JetBrains Mono
 *      Border-based depth (bez soft shadows)
 *      Single accent #FF5630 (orange)
 *      Minimal animations (<200ms)
 *      Grid layout, jednolite border-radius 14px
 *
 * Wymaga: v2/tokens.css + v2/fonts.css (Geist, Instrument Serif, JetBrains Mono)
 */


/* ===== TOP BAR ===== */
.top-bar {
    background: #0A0A0A;
    color: #F5F5F5;
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.top-bar-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.6);
}
.top-bar-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 86, 48, 0.12);
    border: 1px solid rgba(255, 86, 48, 0.35);
    border-radius: 999px;
    padding: 3px 10px;
}
.top-bar-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 86, 48, 0.2);
}
.top-bar-status span {
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.top-bar-price {
    color: var(--accent);
    font-weight: 600;
}


/* ===== BODY / BASE ===== */
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}


/* ===== SECTION SHARED ===== */
.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}
.section-narrow {
    max-width: 820px;
}
.section-wide {
    max-width: 1280px;
}
.section-title {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--text);
    text-align: center;
    margin-bottom: 14px;
    text-wrap: balance;
}
.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.6;
    text-wrap: balance;
}


/* ===== HERO ===== */
.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px 24px 64px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    text-align: left;
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elev-1);
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 22px;
    text-wrap: balance;
}
.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.hero p {
    font-size: 1.08rem;
    color: var(--text-dim);
    max-width: 48ch;
    margin: 0 0 32px;
    line-height: 1.6;
    text-wrap: balance;
}
.hero-fade-text {
    position: relative;
    display: inline-block;
    color: var(--text);
    animation: textFadeOut 12s ease-in-out 2s forwards;
}
@keyframes textFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0.2; }
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 11px 20px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: var(--accent);
    color: #0A0A0A;
    border-color: var(--accent);
    font-weight: 600;
}
.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -8px var(--accent-line);
}
.btn-lg {
    padding: 14px 26px;
    font-size: 0.98rem;
}
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}


/* ===== PROBLEM SECTION ===== */
.problem-card {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
}
.problem-card h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.15;
    text-wrap: balance;
}
.problem-card p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 14px;
    max-width: 64ch;
}
.problem-card p strong {
    color: var(--text);
    font-weight: 600;
}
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}
.before-after-col {
    padding: 0 24px;
    font-size: 0.94rem;
    line-height: 1.65;
}
.before-after-col + .before-after-col {
    border-left: 1px solid var(--border);
}
.before-after-col p {
    margin: 0;
    color: var(--text-dim);
    max-width: none;
}
.before-after-col.after p {
    color: var(--text);
}
.before-after-label {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    color: var(--text-faint);
}
.before-after-col.after .before-after-label {
    color: var(--accent);
}
@media (max-width: 600px) {
    .before-after {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .before-after-col + .before-after-col {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 24px;
    }
}


/* ===== SYSTEMS MAP (smap) ===== */
.smap-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elev-1);
    padding: 18px;
}
/* Beta notice (.is-cd140556) */
.is-cd140556 {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-faint);
    padding: 6px 14px 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.smap-canvas {
    overflow: auto;
    max-height: 80vh;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.smap-viewport {
    position: relative;
    margin: 0 auto;
}
.smap-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}
.smap-edge {
    transition: opacity 0.15s ease, stroke-width 0.15s ease;
}
.smap-node {
    position: absolute;
    width: 200px;
    min-height: 88px;
    transform: translate(-50%, -50%);
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: default;
    transition: border-color 0.15s ease, transform 0.15s ease;
    z-index: 2;
}
.smap-node:hover {
    border-color: var(--accent-line);
    transform: translate(-50%, -50%) scale(1.02);
    z-index: 5;
}
.smap-node.dimmed {
    opacity: 0.25;
}
.smap-node.highlighted {
    border-color: var(--accent);
    background: var(--bg-elev-1);
}
.smap-node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}
.smap-node-stage {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.smap-node-badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border-strong);
    background: var(--bg-elev-2);
    color: var(--text-dim);
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.smap-badge-brain,
.smap-badge-voice,
.smap-badge-hands,
.smap-badge-heart,
.smap-badge-immune {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: var(--accent-line);
}
.smap-badge-dna {
    background: var(--bg-elev-2);
    color: var(--text-dim);
    border-color: var(--border-strong);
}
.smap-node-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
    margin-top: 6px;
    letter-spacing: -0.005em;
}
.smap-node-path {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    color: var(--text-faint);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Mobile list fallback */
.smap-mobile { display: none; }
.smap-mobile-card {
    display: block;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
}
.smap-mobile-card .smap-node-stage { margin-bottom: 2px; }
.smap-mobile-card .smap-node-title { font-size: 0.92rem; margin-top: 4px; }
.smap-mobile-card .smap-node-path { font-size: 0.72rem; }

@media (max-width: 900px) {
    .smap-canvas { display: none; }
    .smap-mobile { display: block; }
}


/* ===== HOW IT WORKS ===== */
.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 680px) {
    .how-grid { grid-template-columns: repeat(3, 1fr); }
}
.how-card {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.how-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.how-card h3 {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text);
    margin-bottom: 10px;
}
.how-card p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: none;
}


/* ===== TECH STACK (Na czym budujemy) ===== */
/* .is-2ca74f2a = grid container */
.is-2ca74f2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 680px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .is-2ca74f2a { grid-template-columns: 1fr; }
}
/* .is-c1405dff = box */
.is-c1405dff {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.18s ease;
}
.is-c1405dff:hover {
    border-color: var(--border-strong);
}
/* .is-1cfede46 = label (AI / Cloud) */
.is-1cfede46 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
/* .is-8a63a597 = text */
.is-8a63a597 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    max-width: none;
}


/* ===== SCHEDULE ===== */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 620px;
    margin: 0 auto 20px;
}
.schedule-item {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.15s ease;
}
.schedule-item:hover {
    border-color: var(--border-strong);
}
.schedule-date {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--accent);
    min-width: 140px;
    letter-spacing: 0.02em;
}
.schedule-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dim);
}
.schedule-label strong {
    color: var(--text);
    font-weight: 500;
    margin-right: 6px;
}
.schedule-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-faint);
    line-height: 1.6;
    max-width: 620px;
    margin: 8px auto 0;
}


/* ===== GATEWAY (yes/no) ===== */
.gateway-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
@media (min-width: 680px) {
    .gateway-grid { grid-template-columns: 1fr 1fr; }
}
.gateway-col {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.gateway-col h3 {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}
.gateway-col.gateway-yes {
    border-color: var(--accent-line);
    background:
        linear-gradient(180deg, rgba(255, 86, 48, 0.04), transparent 60%),
        var(--bg-elev-1);
}
.gateway-col.gateway-yes h3 {
    color: var(--accent);
}
.gateway-col.gateway-no {
    background: var(--bg-elev-2);
}
.gateway-col.gateway-no h3 {
    color: var(--text-faint);
}
.gateway-col p {
    font-size: 0.94rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
    max-width: none;
}
.gateway-col.gateway-no p {
    color: var(--text-faint);
}
.gateway-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-faint);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}


/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 680px) {
    .testi-grid { grid-template-columns: 1fr 1fr; }
}
.testi-card {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.18s ease;
}
.testi-card:hover {
    border-color: var(--border-strong);
}
.testi-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-line);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}
.testi-card blockquote {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.96rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
    font-style: normal;
    letter-spacing: -0.005em;
}
.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.testi-author {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 2px;
}
.testi-company {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-faint);
    line-height: 1.35;
}


/* ===== FOUNDER (Mirek bio) ===== */
/* details-block = base wrapper */
.details-block {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.18s ease;
}
.details-block:hover {
    border-color: var(--border-strong);
}
.founder-card-inner {
    padding: 32px;
}
/* .is-36af8ed7 = flex container (avatar + content) */
.is-36af8ed7 {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
}
/* .is-727f21f0 = avatar 180px */
.is-727f21f0 {
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
/* .is-9427e719 = kicker (Kto prowadzi) */
.is-9427e719 {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
/* .is-4e192643 = h3 name */
.is-4e192643 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    line-height: 1.1;
}
/* .is-18d8643b = lead p */
.is-18d8643b {
    font-family: var(--font-sans);
    font-size: 0.94rem;
    color: var(--text-dim);
    margin-bottom: 16px;
    max-width: none;
    line-height: 1.55;
}
/* .is-63fd58c8 = body p */
.is-63fd58c8 {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 12px;
    max-width: none;
}
/* .is-4ae80bb3 = tags wrapper */
.is-4ae80bb3 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
/* .is-d26d34f0 = tag pill */
.is-d26d34f0 {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-faint);
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
@media (max-width: 720px) {
    .is-36af8ed7 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 28px 24px;
    }
    .is-727f21f0 {
        margin: 0 auto;
    }
    .is-4ae80bb3 {
        justify-content: center;
    }
}


/* ===== PRICING ===== */
.pricing-wrapper {
    max-width: 520px;
    margin: 0 auto 36px;
}
.pricing-card {
    background:
        linear-gradient(180deg, rgba(255, 86, 48, 0.05), transparent 40%),
        var(--bg-elev-1);
    border: 1px solid var(--accent-line);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.18s ease;
}
.pricing-card:hover {
    border-color: var(--accent);
}
.pricing-tier {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.pricing-price {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}
.pricing-period {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-faint);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-line);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li {
    padding-left: 26px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.5;
    position: relative;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23FF5630' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}


/* ===== FUTURE BATCHES ===== */
.future-batches {
    max-width: 440px;
    margin: 0 auto;
}
.future-batches-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.future-batches table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-mono);
}
.future-batches td {
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-faint);
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
}
.future-batches tr:last-child td {
    border-bottom: none;
}
.future-batches td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--text-dim);
}


/* ===== FAQ ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-list details {
    background: var(--bg-elev-1);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.15s ease;
}
.faq-list details:hover,
.faq-list details[open] {
    border-color: var(--border-strong);
}
.faq-list summary {
    padding: 18px 22px;
    font-family: var(--font-sans);
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-faint);
    flex-shrink: 0;
    transition: transform 0.15s ease, color 0.15s ease;
}
.faq-list details[open] summary::after {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-list summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 22px 22px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}


/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    background:
        radial-gradient(600px 300px at 50% 100%, rgba(255, 86, 48, 0.08), transparent 70%),
        var(--bg-elev-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}
.final-cta h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 16px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}
.final-cta h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.final-cta .section-subtitle {
    margin-bottom: 32px;
}


/* ===== FOOTER ===== */
footer {
    background: var(--bg);
    color: var(--text);
    width: 100%;
    padding: 72px 0 40px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}
.footer-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 3fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-brand > div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-brand > div::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-line);
    flex-shrink: 0;
}
.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.02em;
}
.footer-brand-description {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
    max-width: 34ch;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-section-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-list li { margin: 0; padding: 0; }
.footer-link {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-link:hover {
    color: var(--text);
    text-decoration: none;
}
.footer-bottom {
    padding-top: 0;
    text-align: center;
}
.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--text-mute);
    letter-spacing: 0.02em;
}
.footer-credits > span:not(:first-child) {
    color: var(--text-mute);
}
.footer-brand-link {
    color: var(--text-dim);
    text-decoration: none;
    border-bottom: 1px dotted var(--border-strong);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-brand-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-line);
    text-decoration: none;
}

@media (max-width: 820px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .footer-brand-description { white-space: normal; }
}
@media (max-width: 540px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    footer {
        padding: 56px 0 32px;
    }
}


/* ===== ASCII DECODE (animacja tekstu) ===== */
.ascii-decode {
    display: inline-block;
    font-family: inherit;
    color: inherit;
}
.ascii-decode.decoding {
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 0.02em;
}


/* ===== FADE-IN ANIMATIONS (minimal, <200ms to visibility) ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.35s ease forwards;
}
.fade-in-d1 { animation-delay: 80ms; }
.fade-in-d2 { animation-delay: 160ms; }
.fade-in-d3 { animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        animation: none;
    }
    .hero-fade-text {
        animation: none;
    }
}


/* ===== RESPONSIVE (hero + sections) ===== */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px 40px;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-width: 260px;
    }
}
@media (max-width: 768px) {
    .section { padding: 56px 20px; }
    .problem-card { padding: 28px 24px; }
    .schedule-item {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    .pricing-card {
        padding: 28px 22px;
    }
    .pricing-price {
        font-size: 2.4rem;
    }
    .final-cta {
        padding: 56px 20px;
    }
}
