:root {
    --bg: #f4f7fb;
    --ink: #0f172a;
    --muted: #5b6b82;
    --line: #e2e8f0;
    --white: #fff;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --green: #059669;
    --orange: #ea580c;
    --purple: #7c3aed;
    --navy: #0b1220;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(15, 23, 42, .12);
    --font: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.lp {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.orb {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(70px);
    opacity: .45;
    animation: drift 18s ease-in-out infinite;
}
.orb-a { width: 420px; height: 420px; background: #93c5fd; top: -80px; right: -60px; }
.orb-b { width: 360px; height: 360px; background: #c4b5fd; bottom: 10%; left: -80px; animation-delay: -6s; }
.orb-c { width: 280px; height: 280px; background: #99f6e4; top: 48%; right: 8%; animation-delay: -11s; opacity: .28; }
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -24px) scale(1.08); }
}

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(244, 247, 251, .82);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 128px; gap: 1rem; }
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.logo img { height: 104px; width: auto; max-width: 560px; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.15rem; font-size: .92rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-login { padding: .4rem .7rem; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; cursor: pointer; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .7rem 1.15rem;
    font-weight: 600;
    font-size: .92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(37, 99, 235, .28); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-lg { padding: .9rem 1.4rem; }

.hero { position: relative; z-index: 1; padding: 1.25rem 0 4.5rem; }
.pitch { position: relative; z-index: 1; padding: 0 0 4.5rem; }
.pitch-frame {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: #0f172a;
    aspect-ratio: 9 / 16;
}
.pitch-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0f172a;
    vertical-align: top;
}
.pitch-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: start; }
.eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .7rem;
}
.eyebrow.light { color: #bfdbfe; }
h1 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.12; letter-spacing: -.03em; }
h1 em { font-style: normal; color: var(--blue); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; line-height: 1.2; }
h3 { font-size: 1.2rem; }
.lead { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 1rem 0 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; list-style: none; }
.hero-pills li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem .7rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
}

.hero-stage { display: flex; flex-direction: column; gap: .85rem; min-height: 0; }
.hero-kpis { display: flex; gap: .6rem; flex-wrap: wrap; }
.hero-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.hero-slideshow { width: 100%; transform: none; }
.hero-slides {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f8fafc;
}
.hero-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}
.hero-slides img.is-on {
    opacity: 1;
    pointer-events: auto;
}
.screen-lg { transform: rotate(1deg); }
.screen-wide { width: 100%; }
.tilt { transition: transform .4s; }
.tilt:hover { transform: rotate(0) translateY(-4px); }

.float-slow { animation: floaty 7s ease-in-out infinite; }
.float-fast { animation: floaty2 5.5s ease-in-out infinite; }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes floaty2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.screen {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.screen img { width: 100%; height: auto; }
.browser {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .55rem .8rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--line);
    font-size: .72rem;
    color: var(--muted);
}
.browser span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.browser span:nth-child(1) { background: #f87171; }
.browser span:nth-child(2) { background: #fbbf24; }
.browser span:nth-child(3) { background: #34d399; }
.browser em { margin-left: .4rem; font-style: normal; }

.chat-card, .chat-demo {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.chat-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    justify-self: end;
}
.chat-head {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem .9rem;
    border-bottom: 1px solid var(--line);
}
.chat-head strong { display: block; font-size: .9rem; }
.chat-head small { color: var(--muted); font-size: .72rem; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #dbeafe; color: var(--blue);
    display: grid; place-items: center; font-weight: 700; font-size: .75rem;
}
.live {
    margin-left: auto;
    font-size: .68rem;
    font-weight: 700;
    color: var(--green);
    background: #ecfdf5;
    padding: .2rem .5rem;
    border-radius: 999px;
}
.chat-body { padding: .85rem; display: flex; flex-direction: column; gap: .55rem; min-height: 220px; background: #f8fafc; }
.bubble {
    max-width: 92%;
    padding: .65rem .8rem;
    border-radius: 14px;
    font-size: .8rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(8px);
    animation: pop .45s ease forwards;
}
.bubble.bot { background: #e8f1ff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble.user { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.menu { display: flex; flex-direction: column; gap: .25rem; }
.bubble.menu span { background: #fff; border-radius: 8px; padding: .3rem .45rem; }
.bubble[data-step="1"] { animation-delay: .4s; }
.bubble[data-step="2"] { animation-delay: 1.4s; }
.bubble[data-step="3"] { animation-delay: 2.4s; }
.bubble[data-step="4"] { animation-delay: 3.2s; }
@keyframes pop { to { opacity: 1; transform: none; } }
.typing { display: none; }
.chat-replay .bubble { opacity: 0; }
.chat-compose { padding: .65rem .9rem; font-size: .75rem; color: var(--muted); border-top: 1px solid var(--line); }

.kpi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .55rem .8rem;
    box-shadow: var(--shadow);
}
.kpi-card span { display: block; font-weight: 800; color: var(--blue); }
.kpi-card small { color: var(--muted); font-size: .7rem; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.section-head .lead { margin-bottom: 0; }
.cycle, .screens, .plans, .results, .ia-acao { position: relative; z-index: 1; padding: 4.5rem 0; }
.platform, .audience { position: relative; z-index: 1; padding: 2rem 0 4.5rem; }

.cycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cycle-card, .audience-card, .plan, .stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
}
.cycle-card p, .audience-card p, .plan > p { color: var(--muted); margin: .45rem 0 0; line-height: 1.55; font-size: .95rem; }
.ico {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    font-weight: 800; font-size: .8rem; margin-bottom: .85rem;
}
.ico-blue { background: #dbeafe; color: var(--blue); }
.ico-green { background: #d1fae5; color: var(--green); }
.ico-orange { background: #ffedd5; color: var(--orange); }
.ico-purple { background: #ede9fe; color: var(--purple); }

.platform-grid, .split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.2rem; align-items: center; }
#panel-dash .split { grid-template-columns: 1.25fr .75fr; align-items: start; }
#panel-dash .screen-wide img { background: #f8fafc; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.checks { list-style: none; margin: 1.1rem 0 1.4rem; display: grid; gap: .55rem; }
.checks li { padding-left: 1.4rem; position: relative; color: var(--ink); }
.checks li:before { content: ""; position: absolute; left: 0; top: .45rem; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

.tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 1.6rem; flex-wrap: wrap; }
.tab {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}
.tab.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.is-on { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.ia-acao-label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 1rem;
}
.ia-acao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-bottom: 2.4rem;
}
.ia-acao-grid-one {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.ia-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.ia-video {
    background: #0f172a;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}
.ia-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: #0f172a;
}
.ia-card h4 {
    padding: 1rem 1.05rem 0;
    font-size: 1.02rem;
    line-height: 1.35;
}
.ia-card p {
    padding: .35rem 1.05rem 1.1rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.screen-shot { margin-top: 1rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.mini-stats { display: grid; gap: .8rem; margin-top: 1.2rem; }
.mini-stats div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem; }
.mini-stats strong { display: block; font-size: 1.3rem; }
.mini-stats span { color: var(--muted); font-size: .82rem; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.plan-grid { display: grid; grid-template-columns: minmax(0, 560px); justify-content: center; gap: 1.2rem; align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan .checks { flex: 1; }
.plan .btn { margin-top: auto; width: 100%; }
.plan-tag { font-size: .8rem; font-weight: 700; color: var(--blue); margin: .2rem 0 .4rem; }
.plan-hot {
    border-color: transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #2563eb, #7c3aed) border-box;
    border: 2px solid transparent;
    position: relative;
    transform: none;
}
.badge {
    position: absolute;
    top: -12px;
    right: 18px;
    background: var(--purple);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px;
}

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; letter-spacing: -.03em; color: var(--blue); }
.stat span { color: var(--muted); font-size: .88rem; }

.founder {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}
.founder-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 2.4rem;
    align-items: center;
}
.founder-photo {
    position: relative;
    max-width: 380px;
}
.founder-photo::after {
    content: "";
    position: absolute;
    inset: 10% 8% auto 8%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, .28), transparent 70%);
    filter: blur(22px);
    z-index: 0;
    pointer-events: none;
}
.founder-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
}
.founder-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.03em; }
.founder-role {
    margin: .35rem 0 1rem;
    color: var(--blue);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.45;
}
.founder-degrees {
    list-style: none;
    margin: 0 0 1.1rem;
    display: grid;
    gap: .35rem;
}
.founder-degrees li {
    position: relative;
    padding-left: 1rem;
    color: var(--muted);
    font-size: .9rem;
}
.founder-degrees li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
.founder-copy p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: .85rem;
}
.founder-copy p strong { color: var(--ink); font-weight: 600; }
.founder-copy a { color: var(--blue); font-weight: 600; }
.founder-copy a:hover { text-decoration: underline; }
.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin: 1.4rem 0 1.2rem;
}
.founder-stats div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .85rem .7rem;
    text-align: center;
}
.founder-stats strong {
    display: block;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}
.founder-stats span {
    display: block;
    margin-top: .2rem;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.3;
}
.founder-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.founder-tags span {
    font-size: .72rem;
    font-weight: 600;
    color: var(--blue-dark);
    background: #dbeafe;
    border-radius: 999px;
    padding: .32rem .7rem;
}

.cta {
    position: relative;
    z-index: 1;
    margin: 0 20px 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #1d4ed8 0%, #312e81 100%);
    color: #fff;
    padding: 3.2rem 0;
}
.cta .lead { color: #dbeafe; }
.cta a { color: #fff; text-decoration: underline; }
.cta-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 2rem; align-items: center; }
.cta-contact { margin-top: 1rem; color: #bfdbfe; }
.demo-form {
    background: #fff;
    color: var(--ink);
    border-radius: 20px;
    padding: 1.3rem;
    display: grid;
    gap: .7rem;
    box-shadow: var(--shadow);
}
.demo-form label { display: grid; gap: .3rem; font-size: .82rem; font-weight: 600; }
.demo-form input, .demo-form select {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .7rem .75rem;
    font-size: .95rem;
}
.form-note { font-size: .75rem; color: var(--muted); text-align: center; }
.form-ok { background: #ecfdf5; color: var(--green); padding: .6rem .8rem; border-radius: 10px; font-size: .88rem; }

.foot { position: relative; z-index: 1; background: var(--navy); color: #cbd5e1; padding: 2.5rem 0 1.2rem; }
.foot .logo { margin-bottom: .7rem; display: inline-flex; background: #fff; border-radius: 12px; padding: 6px 10px; }
.foot .logo img { height: 52px; background: none; border-radius: 0; padding: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 1.5rem; }
.foot h4 { color: #fff; margin-bottom: .6rem; font-size: .85rem; }
.foot a { display: block; color: #94a3b8; margin: .3rem 0; font-size: .9rem; }
.foot a:hover { color: #fff; }
.foot-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #1e293b; display: flex; justify-content: space-between; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s ease forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

.academy-hero { position: relative; z-index: 1; padding: 3.2rem 0 1.5rem; }
.academy-hero h1 { max-width: 18ch; }
.academy-counts { display: flex; gap: 1.4rem; margin-top: 1.6rem; flex-wrap: wrap; }
.academy-counts strong { display: block; font-size: 1.6rem; letter-spacing: -.03em; }
.academy-counts span { color: var(--muted); font-size: .82rem; }
.academy-catalog, .academy-home { position: relative; z-index: 1; padding: 2.2rem 0 4.5rem; }
.academy-home { padding-top: 4.5rem; }
.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.academy-grid-preview { margin-bottom: .4rem; }
.academy-home-cta { display: flex; justify-content: center; margin-top: 1.6rem; }
.academy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.academy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.academy-card-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e8eef7;
    overflow: hidden;
}
.academy-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.academy-card-fallback {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-size: 2.4rem;
}
.academy-kind {
    position: absolute;
    left: 12px; top: 12px;
    background: #fff;
    color: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .22rem .5rem;
    border-radius: 999px;
}
.academy-card-body { padding: 1rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.academy-cat { font-size: .72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .04em; }
.academy-card-body h3 { font-size: 1.02rem; line-height: 1.35; }
.academy-card-body p { color: var(--muted); font-size: .86rem; line-height: 1.45; }
.academy-meta { color: var(--muted); font-size: .78rem; margin-top: .2rem; }
.academy-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: .7rem;
    font-size: .88rem;
}
.academy-foot strong { color: var(--green); }
.academy-foot span { font-weight: 600; color: var(--blue); }
.academy-empty { text-align: center; color: var(--muted); padding: 2rem 0; }

@media (max-width: 960px) {
    .academy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .hero-grid, .platform-grid, .split, .split.reverse, .cycle-grid, .plan-grid, .stat-grid, .cta-grid, .foot-grid, .audience-grid, .academy-grid, .founder-grid, .founder-stats, .ia-acao-grid {
        grid-template-columns: 1fr;
    }
    .founder-photo { max-width: 280px; margin: 0 auto; }
    .hero-stage { min-height: 0; }
    .screen-crm { width: 100%; }
    .chat-card { width: 100%; max-width: none; justify-self: stretch; }
    .plan-hot { transform: none; }
    .cta { margin: 0 12px 1.2rem; }
    .nav-inner {
        position: relative;
        justify-content: center;
        min-height: 88px;
    }
    .nav-inner > .logo {
        margin: 0 auto;
    }
    .nav-inner > .logo img {
        height: 52px;
        max-width: 280px;
    }
    .nav-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 88px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.2rem 1.3rem;
        border-bottom: 1px solid var(--line);
        align-items: stretch;
    }
    .nav-links.is-open { display: flex; }
}

img.zoomable { cursor: zoom-in; }
img.zoomable.is-zooming { opacity: 0; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(0);
    transition: background .45s ease, backdrop-filter .45s ease;
}
.lightbox.is-open {
    pointer-events: auto;
    cursor: zoom-out;
    background: rgba(15, 23, 42, .82);
    backdrop-filter: blur(8px);
}
.lightbox img {
    position: fixed;
    z-index: 81;
    visibility: hidden;
    margin: 0;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    background: #fff;
    max-width: none;
    max-height: none;
    transition:
        top .45s cubic-bezier(.22, 1, .36, 1),
        left .45s cubic-bezier(.22, 1, .36, 1),
        width .45s cubic-bezier(.22, 1, .36, 1),
        height .45s cubic-bezier(.22, 1, .36, 1);
}
.lightbox.is-open img { visibility: visible; }
