/* ==========================================================================
   mmvizitka.cz — veřejná eVizitka (MML-83 finál v3)
   Mobile = foto hero · desktop = split layout.
   Barvy řídí "motiv z Labu" (data-variant: green | lime | dark) přes --th-* proměnné.
   ========================================================================== */

/* ── M&M Sans (self-hosted brand typeface) ──────────────────────────────── */
@font-face { font-family: "MM Sans"; src: url("../fonts/mm-sans/MMSans-Regular-YWlRFrZ.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "MM Sans"; src: url("../fonts/mm-sans/MMSans-Italic-7aM-7Nc.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "MM Sans"; src: url("../fonts/mm-sans/MMSans-Medium-LGGQuYC.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "MM Sans"; src: url("../fonts/mm-sans/MMSans-Semibold-zK8DoiL.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "MM Sans"; src: url("../fonts/mm-sans/MMSans-Bold-FyWgDiU.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
    --lime-confirm: #BEF06E;
    --confirm-ink: #004137;
    --page: #F7F7F7;
    --border: #DFDFDF;
    --line: #EDEDED;
    --ink: #0D0D0D;
    --muted: #868686;
    --mm-red: #EA002D;
    --wa: #25D366;
    --font: "MM Sans", "Google Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--page);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ── Motiv z Labu (variant) — barevné sady ───────────────────────────────── */
.vz,
.vz[data-variant="green"] {
    --th-btn-bg: #004137;     --th-btn-text: #BEF06E;     --th-btn-hover: #00302A;
    --th-soft: #E9F4B7;       --th-soft-icon: #004137;
    --th-hero-bg: #004137;    --th-hero-text: #ffffff;    --th-hero-sub: #BEF06E;   --th-hero-muted: rgba(255,255,255,0.55);
    --th-logo-mm: #ffffff;    --th-logo-reality: rgba(255,255,255,0.75);
    --th-soc-border: rgba(255,255,255,0.25);              --th-soc-bg-h: rgba(255,255,255,0.12);
}
.vz[data-variant="lime"] {
    --th-btn-bg: #004137;     --th-btn-text: #BEF06E;     --th-btn-hover: #00302A;
    --th-soft: #E9F4B7;       --th-soft-icon: #004137;
    --th-hero-bg: #BEF06E;    --th-hero-text: #004137;    --th-hero-sub: #004137;   --th-hero-muted: rgba(0,65,55,0.6);
    --th-logo-mm: #004137;    --th-logo-reality: #004137;
    --th-soc-border: rgba(0,65,55,0.25);                  --th-soc-bg-h: rgba(0,65,55,0.08);
}
.vz[data-variant="dark"] {
    --th-btn-bg: #0D0D0D;     --th-btn-text: #BEF06E;     --th-btn-hover: #262626;
    --th-soft: #EDEDED;       --th-soft-icon: #0D0D0D;
    --th-hero-bg: #0D0D0D;    --th-hero-text: #ffffff;    --th-hero-sub: #BEF06E;   --th-hero-muted: rgba(255,255,255,0.5);
    --th-logo-mm: #ffffff;    --th-logo-reality: rgba(255,255,255,0.75);
    --th-soc-border: rgba(255,255,255,0.25);              --th-soc-bg-h: rgba(255,255,255,0.12);
}

/* ── Brand wordmark ──────────────────────────────────────────────────────── */
.v3-logo {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.02em;
    user-select: none;
}
.v3-logo b { font-weight: 700; }
.v3-logo--default { color: var(--confirm-ink); }
.v3-logo--default b { color: var(--mm-red); }
.v3-logo--hero { font-size: 16px; color: var(--th-logo-reality); }
.v3-logo--hero b { color: var(--th-logo-mm); }

/* ════════════════════════════════════════════════════════════════════════
   MOBILE — Foto hero
   ════════════════════════════════════════════════════════════════════════ */
.v3m {
    max-width: 440px;
    min-height: 100dvh;
    margin: 0 auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.v3m__hero { position: relative; height: 320px; flex-shrink: 0; overflow: hidden; }
.v3m__photo { width: 100%; height: 320px; object-fit: cover; object-position: center 20%; display: block; }
.v3m__photo--fallback {
    display: grid; place-items: center;
    background: var(--th-hero-bg);
}
.v3m__photo--fallback span { font-size: 72px; font-weight: 700; color: var(--th-hero-text); letter-spacing: -0.02em; }

.v3m__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 38%, rgba(0,26,22,0.62) 100%);
}
.v3m__share {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    border: none; cursor: pointer; color: #fff;
    display: grid; place-items: center; line-height: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    transition: background 0.18s ease;
}
.v3m__share:hover { background: rgba(255,255,255,0.34); }

.v3m__ident { position: absolute; left: 22px; bottom: 38px; z-index: 1; color: #fff; }
.v3m__name { margin: 0; font-size: 27px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
.v3m__role { margin: 4px 0 0; font-size: 14px; font-weight: 600; color: var(--lime-confirm); }
.v3m__area { margin: 4px 0 0; display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.78); }
.v3m__area svg { flex-shrink: 0; }

.v3m__wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 34px; display: block; }

.v3m__body { flex: 1; padding: 8px 22px 0; }

.v3m__actions { display: flex; gap: 10px; margin-bottom: 14px; }
.v3-act {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 12px 4px 10px;
    border-radius: 14px; border: none; cursor: pointer;
    font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: -0.01em;
    text-decoration: none;
    background: var(--page); color: var(--th-soft-icon);
    transition: background 0.18s ease;
}
.v3-act span { color: var(--ink); }
.v3-act:hover { background: var(--line); }
.v3-act--primary { background: var(--th-btn-bg); color: var(--th-btn-text); }
.v3-act--primary span { color: var(--th-btn-text); }
.v3-act--primary:hover { background: var(--th-btn-hover); }
.v3-act--wa { color: var(--wa); }

/* ── Contact rows ────────────────────────────────────────────────────────── */
.v3-row {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 8px; margin: 0 -8px;
    border-radius: 12px; cursor: pointer; text-decoration: none;
    background: transparent;
    transition: background 0.18s ease;
}
.v3-row:hover { background: var(--page); }
.v3-row__icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--th-soft); color: var(--th-soft-icon);
    display: grid; place-items: center; flex-shrink: 0; line-height: 0;
}
.v3-row__main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.v3-row__k { font-size: 11px; color: var(--muted); }
.v3-row__v { font-size: 14px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v3-row__chev { color: var(--border); line-height: 0; flex-shrink: 0; }
.v3-row__div { height: 1px; background: var(--line); }

/* ── Social icons (mobil) ────────────────────────────────────────────────── */
.v3m__socials { display: flex; gap: 10px; margin-top: 14px; }
.v3m__soc {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid var(--border); background: #fff;
    display: grid; place-items: center; line-height: 0;
    color: var(--th-soft-icon); text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.v3m__soc:hover { background: var(--page); border-color: var(--th-soft-icon); }

/* ── QR (mobil) ──────────────────────────────────────────────────────────── */
.v3m__qr {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; margin-top: 12px;
    background: var(--page); border-radius: 14px;
}
.v3-qr__code { line-height: 0; flex-shrink: 0; }
.v3m__qr .v3-qr__code svg { width: 56px; height: 56px; display: block; }
.v3m__qrt { font-size: 13px; font-weight: 700; color: var(--ink); }
.v3m__qru { font-size: 12px; font-weight: 600; color: var(--th-soft-icon); margin-top: 2px; }

.v3m__logo { display: flex; justify-content: center; padding: 12px 0 0; }

/* ── CTA — Uložit kontakt ────────────────────────────────────────────────── */
.v3m__cta {
    flex-shrink: 0; padding: 12px 22px 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 30%);
}
.v3-save {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 16px; border-radius: 14px; border: none; cursor: pointer;
    font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
    text-decoration: none;
    background: var(--th-btn-bg); color: var(--th-btn-text);
    box-shadow: 0 8px 22px rgba(0,65,55,0.28);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.v3-save:not(.is-saved):hover { background: var(--th-btn-hover); }
.v3-save__d, .v3-save__s { display: inline-flex; align-items: center; gap: 9px; }
.v3-save__s { display: none; }
.v3-save.is-saved { background: var(--lime-confirm); color: var(--confirm-ink); box-shadow: none; }
.v3-save.is-saved .v3-save__d { display: none; }
.v3-save.is-saved .v3-save__s { display: inline-flex; }

/* ════════════════════════════════════════════════════════════════════════
   DESKTOP — Centrovaná karta s fotkou edge-to-edge (≥ 900 px)
   ════════════════════════════════════════════════════════════════════════ */
.v3d { display: none; }

@media (min-width: 900px) {
    .v3m { display: none; }
    .v3d {
        display: flex; align-items: center; justify-content: center;
        min-height: 100dvh; padding: 40px;
        background: var(--th-hero-bg);
        position: relative; isolation: isolate; overflow: hidden;
        transition: background 0.25s ease;
    }

    /* ── Atmosféra na pozadí ── */
    .v3d__bg { position: absolute; inset: 0; z-index: -1; }
    .v3d__bg::before {
        content: ""; position: absolute;
        width: 56vw; max-width: 760px; aspect-ratio: 1;
        top: -20vw; left: -12vw; border-radius: 50%;
        background: radial-gradient(circle at center, rgba(190,240,110,0.2), transparent 62%);
        filter: blur(12px);
    }
    .v3d__bg::after {
        content: ""; position: absolute; inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.07) 1.1px, transparent 1.1px);
        background-size: 26px 26px;
        -webkit-mask-image: radial-gradient(circle at 28% 30%, #000 0%, transparent 70%);
        mask-image: radial-gradient(circle at 28% 30%, #000 0%, transparent 70%);
    }

    /* ── Karta ── */
    .v3d__frame {
        width: min(1060px, 100%);
        min-height: min(720px, calc(100dvh - 80px));
        display: grid; grid-template-columns: minmax(340px, 43%) 1fr;
        background: #fff; border-radius: 26px; overflow: hidden;
        box-shadow: 0 50px 100px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
    }

    /* ── Levý panel — fotka přes celou výšku ── */
    .v3d__left { position: relative; overflow: hidden; }
    .v3d__left--fallback { background: var(--th-hero-bg); }
    .v3d__photo {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover; object-position: center 25%;
        display: block;
    }
    .v3d__scrim {
        position: absolute; inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 52%, rgba(0,26,22,0.72) 100%);
    }
    .v3d__initials {
        position: absolute; inset: 0;
        display: grid; place-items: center;
    }
    .v3d__initials span {
        font-size: 140px; font-weight: 700; letter-spacing: -0.04em;
        color: var(--th-hero-sub); opacity: 0.85;
    }

    .v3d__logo { position: absolute; top: 28px; left: 30px; }
    .v3d__left--photo .v3-logo--hero { color: rgba(255,255,255,0.8); }
    .v3d__left--photo .v3-logo--hero b { color: #fff; }

    .v3d__ident { position: absolute; left: 30px; right: 30px; bottom: 30px; }
    .v3d__name { margin: 0; font-size: 32px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; color: #fff; }
    .v3d__role { margin: 6px 0 0; font-size: 15px; font-weight: 600; color: var(--lime-confirm); }
    .v3d__area { margin: 6px 0 0; display: flex; align-items: center; gap: 5px; font-size: 13px; color: rgba(255,255,255,0.78); }
    .v3d__area svg { flex-shrink: 0; }
    .v3d__left--fallback .v3d__name { color: var(--th-hero-text); }
    .v3d__left--fallback .v3d__role { color: var(--th-hero-sub); }
    .v3d__left--fallback .v3d__area { color: var(--th-hero-muted); }

    /* ── Pravý panel — akce ── */
    .v3d__right {
        min-width: 0;
        padding: clamp(32px, 4.5vw, 48px) clamp(32px, 4.5vw, 52px) 30px;
        display: flex; flex-direction: column; gap: 26px;
    }
    /* volný prostor rozděl rovnoměrně nad obsah a před patičku */
    .v3d__right > section:first-child { margin-top: auto; }
    .v3-label { margin: 0 0 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }

    .v3d__btns { display: flex; flex-direction: column; gap: 10px; }
    .v3-big {
        width: 100%;
        display: flex; align-items: center; gap: 14px;
        padding: 15px 18px; border-radius: 13px; border: none; cursor: pointer;
        font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
        text-decoration: none;
        background: var(--page); color: var(--th-soft-icon);
        transition: background 0.18s ease;
    }
    .v3-big span { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .v3-big:hover { background: var(--line); }
    .v3-big--primary { background: var(--th-btn-bg); color: var(--th-btn-text); }
    .v3-big--primary span { color: var(--th-btn-text); }
    .v3-big--primary:hover { background: var(--th-btn-hover); }
    .v3-big--wa { color: var(--wa); }

    .v3d__socials { display: flex; gap: 10px; flex-wrap: wrap; }
    .v3d__soc {
        width: 44px; height: 44px; border-radius: 12px;
        border: 1px solid var(--border); background: #fff;
        display: grid; place-items: center; line-height: 0;
        color: var(--th-soft-icon); text-decoration: none;
        transition: background 0.18s ease, border-color 0.18s ease;
    }
    .v3d__soc:hover { background: var(--page); border-color: var(--th-soft-icon); }

    .v3d__savecard {
        display: flex; align-items: center; justify-content: space-between; gap: 20px;
        background: var(--page); border-radius: 16px; padding: 18px 20px;
    }
    .v3d__savetitle { font-size: 15px; font-weight: 700; color: var(--ink); }
    .v3d__savesub { font-size: 13px; color: var(--muted); margin-top: 3px; }
    .v3d__savesub--s { display: none; }
    .v3d__savecard.is-saved .v3d__savesub--d { display: none; }
    .v3d__savecard.is-saved .v3d__savesub--s { display: block; }

    .v3-dl {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 11px 20px; border-radius: 10px;
        border: 1.5px solid var(--th-btn-bg); color: var(--th-btn-bg);
        background: transparent; cursor: pointer; flex-shrink: 0;
        font-family: var(--font); font-size: 14px; font-weight: 600; text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .v3-dl:hover { background: var(--th-soft); }
    .v3-dl__d, .v3-dl__s { display: inline-flex; align-items: center; gap: 8px; }
    .v3-dl__s { display: none; }
    .v3d__savecard.is-saved .v3-dl { background: var(--lime-confirm); color: var(--confirm-ink); border-color: var(--lime-confirm); cursor: default; }
    .v3d__savecard.is-saved .v3-dl__d { display: none; }
    .v3d__savecard.is-saved .v3-dl__s { display: inline-flex; }

    /* ── Patička — QR + sdílení ── */
    .v3d__foot {
        margin-top: auto; padding-top: 22px;
        border-top: 1px solid var(--line);
        display: flex; align-items: center; gap: 16px;
    }
    .v3d__qrbox {
        background: #fff; border: 1px solid var(--line); border-radius: 12px;
        padding: 8px; line-height: 0; flex-shrink: 0;
    }
    .v3d__qrbox svg { width: 62px; height: 62px; display: block; }
    .v3d__sharetext { min-width: 0; }
    .v3d__qrt { font-size: 13px; font-weight: 700; color: var(--ink); }
    .v3d__qru { font-size: 12px; font-weight: 600; color: var(--th-soft-icon); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .v3d__sharebtn {
        margin-left: auto;
        display: flex; align-items: center; gap: 7px;
        padding: 10px 18px; border-radius: 999px;
        border: 1px solid var(--border); cursor: pointer; flex-shrink: 0;
        font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--confirm-ink);
        background: #fff;
        transition: background 0.18s ease;
    }
    .v3d__sharebtn:hover { background: var(--page); }
}

/* ── Entrance ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .v3m, .v3d__frame { animation: vz-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
}
@keyframes vz-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════════════
   LANDING (/) — brand hero s ukázkou vizitky
   Tmavě zelený "Lab green" motiv + limetkové akcenty, font M&M Sans.
   ════════════════════════════════════════════════════════════════════════ */
.lp {
    --lp-green: #004137;
    --lp-deep: #00302A;
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--lp-green);
    color: #fff;
    isolation: isolate;
}

/* ── Atmosféra na pozadí ── */
.lp__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.lp__glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.9; }
.lp__glow--lime {
    width: 60vw; max-width: 720px; aspect-ratio: 1;
    top: -22vw; left: -14vw;
    background: radial-gradient(circle at center, rgba(190,240,110,0.28), transparent 64%);
}
.lp__glow--deep {
    width: 80vw; max-width: 900px; aspect-ratio: 1;
    bottom: -34vw; right: -22vw;
    background: radial-gradient(circle at center, rgba(0,100,84,0.85), transparent 66%);
    filter: blur(20px);
}
.lp__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1.1px, transparent 1.1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(circle at 30% 35%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 30% 35%, #000 0%, transparent 72%);
}

/* ── Top bar ── */
.lp__top {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 26px clamp(22px, 6vw, 72px);
}
.lp__top .v3-logo--hero { font-size: 18px; color: rgba(255,255,255,0.82); }
.lp__top .v3-logo--hero b { color: #fff; }
.lp__badge {
    display: inline-flex; align-items: center;
    padding: 5px 13px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
    color: var(--confirm-ink); background: var(--lime-confirm);
}

/* ── Hlavní mřížka ── */
.lp__main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(36px, 6vw, 80px);
    padding: clamp(28px, 5vw, 56px) clamp(22px, 6vw, 72px) clamp(40px, 6vw, 64px);
    max-width: 1240px; width: 100%; margin: 0 auto;
}

/* ── Levý sloupec — text ── */
.lp__eyebrow {
    margin: 0 0 20px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--lime-confirm);
}

.lp__title {
    margin: 0;
    font-size: clamp(36px, 5.6vw, 62px);
    font-weight: 700; line-height: 1.06; letter-spacing: -0.035em;
}

.lp__lead {
    margin: 26px 0 0; max-width: 30em;
    font-size: clamp(16px, 1.5vw, 18px); line-height: 1.6;
    color: rgba(255,255,255,0.74);
}

.lp__feats {
    list-style: none; margin: 30px 0 0; padding: 0;
    display: flex; flex-direction: column; gap: 13px;
}
.lp__feats li {
    display: flex; align-items: center; gap: 13px;
    font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.92);
}
.lp__feat-i {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    display: grid; place-items: center; line-height: 0;
    color: var(--lime-confirm);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.lp__hint {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 34px 0 0; padding: 11px 17px;
    border-radius: 12px;
    font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.1);
}
.lp__hint svg { color: var(--lime-confirm); }
.lp__hint-base { color: rgba(255,255,255,0.55); }
.lp__hint-slug { color: #fff; }

/* ── Pravý sloupec — ukázka vizitky ── */
.lp__preview { display: flex; justify-content: center; }
.lpc {
    width: 320px; max-width: 100%;
    background: #fff; color: var(--ink);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 40px 80px -28px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}

.lpc__hero {
    position: relative;
    padding: 30px 24px 26px;
    background: var(--lp-green);
    text-align: center; color: #fff;
}
.lpc__avatar {
    width: 76px; height: 76px; margin: 0 auto 14px;
    border-radius: 50%; display: grid; place-items: center;
    font-size: 27px; font-weight: 700; letter-spacing: -0.02em;
    color: var(--lp-green); background: var(--lime-confirm);
    border: 3px solid rgba(255,255,255,0.85);
}
.lpc__name { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.03em; }
.lpc__role { margin: 5px 0 0; font-size: 13px; font-weight: 600; color: var(--lime-confirm); }
.lpc__area {
    margin: 7px 0 0; display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,0.7);
}
.lpc__area svg { flex-shrink: 0; }
.lpc__wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 26px; display: block; }

.lpc__body { padding: 16px 18px 20px; }
.lpc__row {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 6px; border-bottom: 1px solid var(--line);
}
.lpc__row:last-of-type { border-bottom: none; }
.lpc__row-i {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center; line-height: 0;
    background: #E9F4B7; color: var(--lp-green);
}
.lpc__row-t { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lpc__row-t b { font-size: 10px; font-weight: 500; color: var(--muted); }
.lpc__row-t i { font-style: normal; font-size: 13px; font-weight: 600; color: var(--ink); }
.lpc__row-c { color: var(--border); line-height: 0; flex-shrink: 0; }

.lpc__save {
    margin-top: 14px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px; border-radius: 13px;
    font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
    color: var(--lime-confirm); background: var(--lp-green);
}
.lpc__save svg { flex-shrink: 0; }

/* ── Footer ── */
.lp__foot {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
    padding: 20px clamp(22px, 6vw, 72px) 26px;
    font-size: 12px; color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.lp__foot-dot { color: rgba(255,255,255,0.3); }

/* ── Desktop split ── */
@media (min-width: 980px) {
    .lp__main { grid-template-columns: 1.05fr 0.95fr; }
    .lpc { width: 340px; }
}

/* ── Entrance (staggered) ── */
@media (prefers-reduced-motion: no-preference) {
    .lp__eyebrow, .lp__title, .lp__lead, .lp__feats, .lp__hint, .lp__preview {
        animation: lp-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .lp__title { animation-delay: 0.06s; }
    .lp__lead { animation-delay: 0.14s; }
    .lp__feats { animation-delay: 0.2s; }
    .lp__hint { animation-delay: 0.26s; }
    .lp__preview { animation-delay: 0.18s; animation-duration: 0.85s; }
}
@keyframes lp-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
