:root {
    /* Palette */
    --bg:              #f5f1ea;
    --surface:         #ffffff;
    --ink:             #0e1f17;
    --ink-muted:       #5b6b63;
    --ink-faint:       #94a09a;
    --border:          rgba(14, 31, 23, 0.08);

    --card:            #0f2a1f;
    --card-elev:       #143527;
    --card-ink:        #f5f1ea;
    --card-ink-muted:  rgba(245, 241, 234, 0.72);
    --card-ink-faint:  rgba(245, 241, 234, 0.48);
    --card-border:     rgba(245, 241, 234, 0.10);

    --accent:          #E20000;
    --accent-soft:     rgba(226, 0, 0, 0.12);

    /* Type */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-2xl: 40px;

    /* Layout */
    --container: 1200px;
    --gutter: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(14, 31, 23, 0.04), 0 1px 3px rgba(14, 31, 23, 0.06);
    --shadow-md: 0 4px 12px rgba(14, 31, 23, 0.06), 0 12px 32px rgba(14, 31, 23, 0.08);
    --shadow-lg: 0 8px 24px rgba(14, 31, 23, 0.08), 0 24px 64px rgba(14, 31, 23, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    padding-top: 80px;
    overflow-x: clip;
}

img,
svg {
    display: block;
    max-width: 100%;
}
picture {
    display: contents;
}

.reveal,
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-revealed,
.reveal-stagger.is-revealed > * {
    opacity: 1;
    transform: none;
}

.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

em {
    font-style: italic;
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: clamp(40px, 4.5vw, 68px);
}

.section--narrow {
    padding-block: clamp(20px, 2.5vw, 36px);
}

#trust {
    padding-bottom: clamp(0px, 1vw, 14px);
}

#trust + #pavyzdziai {
    padding-top: clamp(72px, 7vw, 110px);
}

#dalinkis {
    padding-top: clamp(72px, 7vw, 110px);
}

.section--tight-top {
    padding-top: clamp(16px, 2vw, 32px);
}

.section--dark {
    background: var(--card);
    color: var(--card-ink);
    background-image:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(80% 60% at 100% 100%, rgba(245, 241, 234, 0.03), transparent 60%);
}

.section--dark .section__eyebrow {
    color: var(--card-ink-faint);
}

.section--dark .section__title {
    color: var(--card-ink);
}

.section--dark .section__lead {
    color: var(--card-ink-muted);
}

.btn {
    --btn-bg: var(--ink);
    --btn-fg: var(--bg);
    --btn-border: transparent;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 22px;
    border-radius: 999px;

    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;

    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-border);

    transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn--primary {
    --btn-bg: var(--card-ink);
    --btn-fg: var(--card);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--card-ink);
    --btn-border: rgba(245, 241, 234, 0.24);
}

.btn--ghost:hover {
    --btn-bg: rgba(245, 241, 234, 0.06);
}

.btn--sm {
    padding: 10px 16px;
    font-size: 14px;
}

.btn--lg {
    padding: 18px 30px;
    font-size: 16px;
    border-radius: 999px;
}
.site-header .btn--primary {
    --btn-bg: var(--ink);
    --btn-fg: var(--bg);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(245, 241, 234, 0);
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled {
    background: rgba(245, 241, 234, 0.75);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom-color: var(--border);
    box-shadow: 0 6px 24px rgba(14, 31, 23, 0.05);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 80px;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .site-header__inner {
    height: 44px;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo__img {
    display: block;
    height: 22px;
    width: auto;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .logo__img {
    height: 17px;
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-muted);
    transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1), gap 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .site-nav {
    font-size: 12.5px;
    gap: 22px;
}

.site-header .btn--sm {
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .btn:hover,
.site-header .btn:active {
    transform: none;
    box-shadow: none;
}

.site-header .btn--primary {
    transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .btn--primary:hover {
    --btn-bg: var(--card);
}

.site-header.is-scrolled .btn--sm {
    padding: 7px 13px;
    font-size: 12.5px;
}

.site-nav a {
    transition: color 0.15s ease;
}

.site-nav a:hover {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: rgba(14, 31, 23, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition:
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .lang-switch {
    padding: 2px;
}

.lang-switch__btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 7px;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--ink-muted);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .lang-switch__btn {
    padding: 4px 9px 4px 6px;
    font-size: 11.5px;
}

.lang-switch__btn:hover {
    color: var(--ink);
}

.lang-switch__btn.is-active {
    background: var(--bg);
    color: var(--ink);
    box-shadow: 0 1px 2px rgba(14, 31, 23, 0.08);
}

.lang-switch__flag {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(14, 31, 23, 0.12);
    flex-shrink: 0;
}

.lang-switch__code {
    display: inline-block;
}

@media (max-width: 520px) {
    .header-actions {
        gap: 8px;
    }

    .hero__footnote br {
        display: none;
    }

    .lang-switch__btn {
        padding: 5px 8px 5px 6px;
        font-size: 11.5px;
        gap: 5px;
    }

    .lang-switch__flag {
        width: 14px;
        height: 14px;
    }
}

.hero {
    padding-top: 32px;
    padding-bottom: clamp(32px, 4vw, 56px);
}

.hero__card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-2xl);
    background: var(--card);
    color: var(--card-ink);

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 0;
    min-height: 600px;

    background-image:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
        radial-gradient(80% 60% at 100% 100%, rgba(245, 241, 234, 0.04), transparent 60%);

    box-shadow: var(--shadow-lg);
}

.hero__content {
    padding: clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--card-ink);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero__eyebrow-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero__eyebrow-logo--yt {
    width: 20px;
}

.hero__eyebrow-sep {
    opacity: 0.4;
    margin-inline: 2px;
}

.hero__title {
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--card-ink);
    max-width: 18ch;
}

.hero__subtitle {
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.5;
    color: var(--card-ink-muted);
    max-width: 46ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero__footnote {
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--card-ink-faint);
    max-width: 50ch;
}

.hero__visual {
    position: relative;
    overflow: visible;
}

.hero__matroska {
    position: absolute;
    right: -5%;
    bottom: -34%;
    width: auto;
    height: 130%;
    max-height: none;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    filter:
        drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.section__head {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: clamp(28px, 3vw, 44px);
}

.section__eyebrow {
    display: inline-block;
    color: var(--ink-faint);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
}

.section__lead {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.55;
    color: var(--ink-muted);
    max-width: 56ch;
    margin-inline: auto;
}

.section__lead + .section__lead {
    margin-top: 18px;
}

.trust__label {
    text-align: center;
    color: var(--ink-faint);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.trust__logos {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vw, 56px);
}

.trust__logo {
    color: var(--ink-faint);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    opacity: 0.85;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.trust__logo:hover {
    color: var(--ink-muted);
    opacity: 1;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.benefit {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 32px 52px;
    text-align: center;
    overflow: hidden;
}

.benefit::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 22px;
    background: var(--card);
}

.benefit__icon {
    width: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit__icon svg {
    width: 22px;
    height: 22px;
}

.benefit__illu {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.benefit__title {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.benefit__body {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-muted);
}

.quote-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%230e1f17' fill-opacity='0.04' d='M9 8h6v6h-3c0 3 2 5 5 5v3c-5 0-8-3-8-8V8zm12 0h6v6h-3c0 3 2 5 5 5v3c-5 0-8-3-8-8V8z'/></svg>") center/contain no-repeat;
    pointer-events: none;
}

.quote-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.quote-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-card__avatar img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.quote-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.quote-card__sub {
    font-size: 13px;
    color: var(--ink-faint);
    line-height: 1.2;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.quote-card__body {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.typing {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    margin-left: 4px;
    transform: translateY(4px);
}

.typing__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ink-faint);
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing__dot:nth-child(2) {
    animation-delay: 0.15s;
}

.typing__dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing-bounce {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30%           { opacity: 1;   transform: translateY(-3px); }
}

.problema__kicker {
    max-width: 680px;
    margin: clamp(36px, 4vw, 56px) auto 0;
    padding-inline: clamp(12px, 3vw, 24px);
    text-align: justify;
    hyphens: auto;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.75;
    color: var(--ink-muted);
}

.problema__punchline {
    max-width: 680px;
    margin: 16px auto 0;
    padding-inline: clamp(12px, 3vw, 24px);
    text-align: justify;
    hyphens: auto;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.75;
    color: var(--ink-muted);
}

#problema {
    padding-bottom: clamp(72px, 8vw, 120px);
}

#pavyzdziai {
    padding-top: clamp(72px, 8vw, 120px);
}

.mark {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    color: var(--ink);
    isolation: isolate;
}

.mark__line {
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -0.1em;
    width: 104%;
    height: 0.3em;
    color: var(--accent);
    overflow: visible;
    z-index: -1;
    pointer-events: none;
}

.entity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 13px 4px 9px;
    background: rgba(14, 31, 23, 0.045);
    border-radius: 7px;
    white-space: nowrap;
    color: var(--ink);
    font-weight: 600;
    vertical-align: middle;
    line-height: 1;
}

.entity__flag {
    width: 20px;
    height: 14px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(14, 31, 23, 0.12);
    flex-shrink: 0;
}

#sprendimas .section__head {
    margin-bottom: clamp(40px, 4vw, 56px);
}

.guide {
    max-width: 760px;
    margin-inline: auto;
}

.guide__tabs {
    display: flex;
    gap: 6px;
    padding: 5px;
    margin: 0 auto 32px;
    background: rgba(245, 241, 234, 0.06);
    border: 1px solid rgba(245, 241, 234, 0.1);
    border-radius: 14px;
    width: fit-content;
}

.guide__tab {
    appearance: none;
    background: transparent;
    color: var(--card-ink-muted);
    border: 0;
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide__tab:hover:not(.is-active) {
    color: var(--card-ink);
}

.guide__tab.is-active {
    background: rgba(245, 241, 234, 0.16);
    color: var(--card-ink);
    font-weight: 600;
}

.guide__panel {
    display: none;
    animation: guideFade 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.guide__panel.is-active {
    display: block;
}

@keyframes guideFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.guide__intro {
    text-align: center;
    color: var(--card-ink-muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 56ch;
    margin: 0 auto 20px;
}

.guide__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 36px;
}

.guide__panel > .guide__download {
    display: flex;
    width: fit-content;
}

.guide__group + .guide__group {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 241, 234, 0.1);
}

.guide__group-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
    color: var(--card-ink);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.guide__group-letter {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(245, 241, 234, 0.14);
    color: var(--card-ink);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.guide__group .guide__steps {
    padding-left: 46px;
}

.guide__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.guide__figure {
    margin: 24px auto 0;
    width: fit-content;
    max-width: 100%;
}

.guide__group + .guide__figure {
    margin: 36px auto;
}

.guide__shot {
    appearance: none;
    display: block;
    width: auto;
    max-width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(245, 241, 234, 0.14);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide__shot:hover,
.guide__shot:focus-visible {
    border-color: rgba(245, 241, 234, 0.28);
    background: rgba(0, 0, 0, 0.28);
    outline: none;
}

.guide__shot picture {
    display: block;
    line-height: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.guide__shot img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin-inline: auto;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.guide__shot-hint {
    display: block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--card-ink-faint);
    text-align: center;
    border-top: 1px solid rgba(245, 241, 234, 0.1);
    background: rgba(245, 241, 234, 0.04);
    pointer-events: none;
}

.guide__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: var(--card-ink-muted);
    font-size: 15px;
    line-height: 1.6;
}

.guide__step > p,
.guide__step > .guide__step-body {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.guide__step-body > p {
    margin: 0;
}

.guide__step-body > p + .guide__sublist,
.guide__step-body > .guide__sublist + .guide__hint,
.guide__step-body > p + .guide__hint {
    margin-top: 10px;
}

.guide__num {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(245, 241, 234, 0.1);
    color: var(--card-ink);
    font-size: 13px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    margin-top: 1px;
}

.guide__step strong {
    color: var(--card-ink);
    font-weight: 600;
}

.guide__step em {
    font-style: italic;
    color: var(--card-ink);
}

.guide__step code {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(245, 241, 234, 0.1);
    color: var(--card-ink);
}

.guide__sublist {
    list-style: disc;
    padding-left: 20px;
    color: var(--card-ink-muted);
    display: grid;
    gap: 6px;
}

.guide__sublist li::marker {
    color: var(--card-ink-faint);
}

.guide__hint {
    color: var(--card-ink-faint);
    font-size: 13px;
    line-height: 1.55;
}

.guide__step--note {
    color: var(--card-ink-faint);
    font-size: 14px;
}

.guide__done {
    margin: 32px 0 0;
    padding: 16px 20px;
    background: rgba(245, 241, 234, 0.06);
    border: 1px solid rgba(245, 241, 234, 0.1);
    border-radius: 12px;
    color: var(--card-ink);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 600px) {
    .guide__tabs {
        width: 100%;
    }

    .guide__tab {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
    }

    .guide__group-title {
        font-size: 17px;
    }

    .guide__group-letter {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .guide__group .guide__steps {
        padding-left: 42px;
    }

    .guide__step {
        font-size: 14px;
        gap: 12px;
    }

    .guide__num {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .guide__shot img {
        max-height: 150px;
    }

}

.callout {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    padding: clamp(8px, 1.5vw, 16px) 0 clamp(32px, 4vw, 56px);
}

.callout__line {
    font-size: clamp(19px, 1.8vw, 24px);
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-weight: 400;
}

.callout__line + .callout__line {
    margin-top: 18px;
}

.callout__line strong {
    font-weight: 700;
    color: var(--ink);
}

.callout__note {
    margin-top: 28px;
    font-size: 14px;
    color: var(--ink-faint);
    font-style: italic;
    letter-spacing: 0.02em;
}

.callout--end {
    padding: clamp(48px, 6vw, 80px) 0 clamp(8px, 1vw, 16px);
}

.callout__final {
    font-size: clamp(20px, 1.9vw, 26px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.4;
}

.callout__sub {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.6;
    color: var(--ink-muted);
    max-width: 540px;
    margin: 0 auto 28px;
}
.marquee {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 6%,
        #000 94%,
        transparent 100%
    );
}

.marquee__row {
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.marquee__shot {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee__shot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.marquee__track img {
    display: block;
    height: clamp(264px, 33.6vw, 408px);
    width: auto;
    border-radius: 14px;
    background: rgba(14, 31, 23, 0.06);
    box-shadow:
        0 4px 14px rgba(14, 31, 23, 0.08),
        0 1px 3px rgba(14, 31, 23, 0.05);
    flex-shrink: 0;
}

/* Direction + speed variations */
@keyframes marquee-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.marquee__row--left .marquee__track {
    animation-name: marquee-scroll-left;
}

.marquee__row--right .marquee__track {
    animation-name: marquee-scroll-right;
}

.marquee__row--slow .marquee__track   { animation-duration: 180s; }
.marquee__row--medium .marquee__track { animation-duration: 150s; }
.marquee__row--fast .marquee__track   { animation-duration: 120s; }

.marquee__track {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
}
.marquee.is-visible .marquee__track {
    animation-play-state: running;
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 720px) {
    .marquee__track img {
        height: clamp(216px, 60vw, 288px);
        border-radius: 12px;
    }

    .marquee__track {
        gap: 12px;
    }
}

@media (max-width: 1080px) {
    .gallery {
        column-count: 3;
    }
}

@media (max-width: 720px) {
    .gallery {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery img {
        margin-bottom: 10px;
        border-radius: 10px;
    }
}

@media (max-width: 420px) {
    .gallery {
        column-count: 1;
    }
}

.carousel {
    position: relative;
    margin-inline: -8px;
}

.carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.example {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

@media (min-width: 760px) {
    .example {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 1080px) {
    .example {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* YouTube-style ad mock */

.example__visual {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(120% 80% at 50% 30%, #2a2a2e, #0e0e10 80%);
    position: relative;
    overflow: hidden;
}

.yt-mock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-mock__ad-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 9px;
    background: #ffd400;
    color: #0e0e10;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
}

.yt-mock__brand {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.yt-mock__brand-label {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
}

.yt-mock__skip {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Card body */

.example__body {
    padding: 20px 22px 22px;
}

.example__channel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.example__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(226, 0, 0, 0.6), rgba(14, 31, 23, 0.4));
    flex-shrink: 0;
}

.example__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
}

.example__subs {
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 2px;
}

.example__title {
    font-size: 15px;
    line-height: 1.45;
    color: var(--ink-muted);
    margin-bottom: 14px;
    font-style: italic;
}

.example__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.example__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.example__tag--bad {
    background: rgba(226, 0, 0, 0.08);
    color: var(--accent);
}

.example__tag--brand {
    background: rgba(14, 31, 23, 0.05);
    color: var(--ink-muted);
}

/* Carousel navigation */

.carousel__nav {
    position: absolute;
    top: calc(50% - 60px);
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel__nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.carousel__nav--prev { left: -22px; }
.carousel__nav--next { right: -22px; }

.carousel__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}

@media (max-width: 760px) {
    .carousel__nav { display: none; }
}

/* Dots */

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(14, 31, 23, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.carousel__dot:hover {
    background: rgba(14, 31, 23, 0.32);
}

.carousel__dot.is-active {
    background: var(--ink);
    width: 24px;
    border-radius: 999px;
}

/* Footnote */

.pavyzdziai__footnote {
    margin: 28px auto 0;
    max-width: 540px;
    text-align: center;
    font-size: 12px;
    color: var(--ink-faint);
    line-height: 1.55;
}

.share {
    max-width: 760px;
    margin-inline: auto;
}

.share__tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding: 5px;
    background: rgba(14, 31, 23, 0.05);
    border-radius: 12px;
    width: fit-content;
}

@media (max-width: 600px) {
    .share__tabs {
        width: 100%;
        gap: 4px;
    }

    .share__tab {
        min-width: 0;
        padding: 9px 8px;
        font-size: 13px;
        gap: 6px;
    }

    .share__tab .logo-stack {
        gap: 4px;
    }

    .share__tab[data-target="team"] .logo-stack > :nth-child(3) {
        display: none;
    }
}

.share__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    flex: 1 1 auto;
    justify-content: center;
    white-space: nowrap;
}

.share__tab:hover:not(.is-active) {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.5);
}

.share__tab.is-active {
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 1px 2px rgba(14, 31, 23, 0.06), 0 2px 6px rgba(14, 31, 23, 0.04);
}

.share__tab svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.share__tab.is-active svg {
    opacity: 1;
}
.logo-stack {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-swap {
    position: relative;
    display: inline-flex;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.logo-swap__mono,
.logo-swap__color {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-swap__mono {
    opacity: 0.55;
}

.logo-swap__color {
    opacity: 0;
}

.share__tab.is-active .logo-swap__mono {
    opacity: 0;
}

.share__tab.is-active .logo-swap__color {
    opacity: 1;
}
.logo-swap__mono--lg,
.logo-swap__color--lg {
    width: 16px;
    height: 16px;
}

.share__tab[data-target="linkedin"] .logo-swap {
    width: 16px;
    height: 16px;
}

.share__panels {
    position: relative;
}

.share__panel {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.share__panel.is-active {
    display: block;
}

.share__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    background: rgba(14, 31, 23, 0.02);
}

.share__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.share__body {
    padding: 24px 26px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    white-space: pre-wrap;
}

.share__url {
    font-weight: 600;
}

.btn--copy {
    --btn-bg: var(--ink);
    --btn-fg: var(--bg);
}

.btn--copy:hover,
.btn--copy:active {
    transform: none;
    box-shadow: none;
}

.btn--copy.is-copied {
    --btn-bg: #22c55e;
    --btn-fg: #ffffff;
}

.faq {
    max-width: 820px;
    margin-inline: auto;
    border-top: 1px solid var(--border);
}

.faq__item {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item:hover:not([open]) {
    background: rgba(14, 31, 23, 0.02);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 4px 28px 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
    letter-spacing: -0.01em;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--ink-muted);
    opacity: 0.45;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
    opacity: 0.9;
}

.faq__a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item[open] .faq__a-wrap {
    grid-template-rows: 1fr;
}

.faq__a-wrap > .faq__a {
    overflow: hidden;
}

.faq__a {
    padding: 0 4px 32px 36px;
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-muted);
}

.faq__a p + p {
    margin-top: 14px;
}

.faq__a ul + p {
    margin-top: 24px;
}

.faq__a ul {
    margin-top: 14px;
    padding-left: 20px;
    list-style: disc;
}

.faq__a li {
    margin-top: 10px;
}

.faq__a li::marker {
    color: var(--ink-faint);
}

.faq__a strong {
    color: var(--ink);
    font-weight: 600;
}

.faq__source {
    color: inherit;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__source strong {
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.faq__source:hover strong,
.faq__source:focus-visible strong {
    text-decoration: underline;
}

.faq__a em {
    font-style: italic;
    color: var(--ink);
}

.faq__placeholder {
    display: inline-block;
    padding: 2px 9px;
    background: rgba(14, 31, 23, 0.05);
    border-radius: 4px;
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
}

.faq__mailto {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px solid rgba(14, 31, 23, 0.2);
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__mailto:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

@media (max-width: 600px) {
    .faq__q {
        padding: 24px 4px 24px 0;
        font-size: 17px;
    }

    .faq__a {
        padding: 0 4px 26px 22px;
    }
}

.site-footer {
    background: var(--card);
    color: var(--card-ink);
    padding-top: clamp(56px, 7vw, 96px);
    position: relative;
    overflow: hidden;
    margin-top: clamp(40px, 5vw, 72px);
    background-image:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(80% 60% at 100% 100%, rgba(245, 241, 234, 0.03), transparent 60%);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(32px, 5vw, 80px);
    padding-bottom: clamp(32px, 4vw, 48px);
    align-items: start;
}

.site-footer__about {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--card-ink-muted);
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 2.5vw, 32px);
    font-size: 14px;
    font-weight: 500;
    color: var(--card-ink-muted);
}

.site-footer__nav a {
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__nav a:hover {
    color: var(--card-ink);
}

.site-footer__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0 clamp(32px, 4vw, 56px);
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--card-ink-faint);
}

.site-footer__email {
    color: var(--card-ink-muted);
    font-weight: 500;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__email:hover {
    color: var(--card-ink);
}

.site-footer__wordmark {
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    padding-inline: clamp(16px, 3vw, 48px);
    line-height: 0;
}

.site-footer__wordmark-img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -2.5vw;
}

@media (max-width: 720px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.placeholder {
    padding: 64px 0;
    text-align: center;
    color: var(--ink-faint);
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.placeholder--inverse {
    color: var(--card-ink-faint);
}

@media (max-width: 960px) {
    .site-nav {
        display: none;
    }

    .hero__card {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero__content {
        padding: 40px 28px 28px;
        align-items: center;
        text-align: center;
    }

    .hero__title,
    .hero__subtitle,
    .hero__footnote {
        margin-inline: auto;
    }

    .hero__footnote {
        padding-top: 0;
        margin-top: -14px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        height: 360px;
        padding: 0;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero__matroska {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        height: 760px;
        max-height: none;
        filter: none;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}

@media (max-width: 520px) {
    :root {
        --gutter: 16px;
    }

    body {
        padding-top: 56px;
    }

    .site-header,
    .site-header.is-scrolled {
        background: rgba(245, 241, 234, 0.75);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        border-bottom-color: var(--border);
        box-shadow: 0 6px 24px rgba(14, 31, 23, 0.05);
    }

    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        height: 56px;
    }

    .logo__img,
    .site-header.is-scrolled .logo__img {
        height: 17px;
    }

    .lang-switch,
    .site-header.is-scrolled .lang-switch {
        padding: 2px;
    }

    .hero__card {
        border-radius: var(--r-xl);
    }

    .hero__title {
        max-width: 100%;
    }

    .hero__visual {
        height: 310px;
    }

    .hero__matroska {
        height: 660px;
    }

    .btn {
        padding: 13px 18px;
        font-size: 14px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding:
        max(16px, env(safe-area-inset-top, 0px))
        max(16px, env(safe-area-inset-right, 0px))
        max(16px, env(safe-area-inset-bottom, 0px))
        max(16px, env(safe-area-inset-left, 0px));
    background: rgba(14, 31, 23, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open {
    display: grid;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.lightbox__img {
    max-width: min(420px, 100%);
    max-height: min(88dvh, 100%);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox--wide .lightbox__img {
    max-width: 100%;
    max-height: min(88dvh, 100%);
    width: auto;
    height: auto;
}

.lightbox__close {
    position: fixed;
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    appearance: none;
    background: rgba(245, 241, 234, 0.12);
    color: var(--card-ink);
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.25s ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
    background: rgba(245, 241, 234, 0.22);
    outline: none;
}

body.lightbox-open {
    overflow: hidden;
    touch-action: none;
}
