/* Public marketing pages: landing, O programe, O nas.
   Loaded by Pages/Shared/_PublicLayout.cshtml. The signed-in app uses site.css. */
:root {
        --ink-900: #0b1020;
        --ink-800: #111936;
        --ink-700: #1f2a44;
        --ink-600: #364156;
        --ink-500: #4b5568;
        --ink-400: #6b7389;
        --ink-300: #9199ad;
        --ink-200: #c8cddc;
        --ink-100: #e4e7f0;
        --ink-50:  #f2f4fa;
        --primary-700: #3b2fb5;
        --primary-600: #4338ca;
        --primary-500: #5b55e6;
        --primary-400: #8b85ff;
        --primary-200: #cdcaff;
        --primary-50:  #eef0ff;
        --accent-500:  #7c3aed;
        --mint-700: #0f766e;
        --mint-600: #14b8a6;
        --mint-50:  #ecfdf7;
        --amber-700: #b45309;
        --amber-50: #fff7ed;
        --line: #e6e9f2;
        --paper: #fbfbfd;
        --ease: cubic-bezier(.4, 0, .2, 1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background: var(--paper);
        color: var(--ink-800);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img, svg { max-width: 100%; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    h1, h2, h3, h4 { font-family: 'Manrope', 'Inter', sans-serif; letter-spacing: -.02em; }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .animate-in { animation: fadeInUp .7s var(--ease) both; }
    .animate-delay-1 { animation-delay: .08s; }
    .animate-delay-2 { animation-delay: .16s; }
    .animate-delay-3 { animation-delay: .24s; }
    .animate-delay-4 { animation-delay: .32s; }

    /* ---------- header ---------- */
    .site-header { position: sticky; top: 0; z-index: 100; overflow: visible; }
    .utility-bar {
        background: var(--ink-900);
        color: rgba(255,255,255,.72);
        font-size: .78rem;
    }
    .utility-inner {
        display: flex; align-items: center; justify-content: space-between;
        gap: 1rem; min-height: 34px;
    }
    .utility-link { color: #fff; font-weight: 600; white-space: nowrap; }
    .utility-link:hover { text-decoration: underline; }
    .main-header {
        background: rgba(255,255,255,.94);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line);
        overflow: visible;
    }
    .main-header-inner {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
        min-height: 66px;
        flex-wrap: nowrap;
    }
    .nav-brand {
        flex: 0 0 auto;
        font-family: 'Manrope', sans-serif;
        font-weight: 800; font-size: 1.15rem;
        color: var(--ink-900);
        display: flex; align-items: center; gap: .6rem;
        white-space: nowrap;
    }
    .brand-mark {
        width: 34px; height: 34px;
        background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
        border-radius: 10px;
        display: grid; place-items: center;
        box-shadow: 0 6px 16px rgba(91,85,230,.3);
        flex-shrink: 0;
    }
    .brand-mark svg { width: 17px; height: 17px; display: block; }
    .nav-toggle {
        display: none;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: auto;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: var(--ink-50);
        cursor: pointer;
        gap: 4px;
        flex-direction: column;
    }
    .nav-toggle-bar {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink-700);
        transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-links {
        flex: 1 1 auto;
        display: flex;
        gap: 1.25rem;
        align-items: center;
        justify-content: center;
        min-width: 0;
        white-space: nowrap;
    }
    .nav-links > a,
    .nav-dropdown-toggle {
        font-size: .88rem; font-weight: 600;
        color: var(--ink-600);
        white-space: nowrap;
        transition: color .2s ease;
    }
    .nav-links > a:hover,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle[aria-expanded="true"] { color: var(--ink-900); }
    .nav-dropdown { position: relative; }
    .nav-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        padding: .45rem 0;
        border: 0;
        background: transparent;
        font: inherit;
        cursor: pointer;
    }
    .nav-dropdown-toggle::after {
        content: '';
        width: .45rem;
        height: .45rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
        transition: transform .2s ease;
    }
    .nav-dropdown.is-open .nav-dropdown-toggle::after {
        transform: rotate(-135deg) translateY(1px);
    }
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + .35rem);
        left: 50%;
        transform: translateX(-50%);
        min-width: 220px;
        padding: .45rem;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(15,23,42,.12);
        display: none;
        z-index: 120;
    }
    .nav-dropdown.is-open .nav-dropdown-menu { display: grid; gap: .15rem; }
    .nav-dropdown-menu a {
        display: block;
        padding: .55rem .75rem;
        border-radius: 10px;
        font-size: .86rem;
        font-weight: 600;
        color: var(--ink-600);
        white-space: nowrap;
        transition: background .2s ease, color .2s ease;
    }
    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
        background: var(--primary-50);
        color: var(--ink-900);
        outline: none;
    }
    .nav-actions {
        flex: 0 0 auto;
        display: flex;
        gap: .7rem;
        align-items: center;
        margin-left: auto;
        white-space: nowrap;
    }
    .lang-btn {
        background: var(--ink-50);
        border: 1px solid var(--line);
        color: var(--ink-700);
        padding: .38rem .7rem;
        border-radius: 8px;
        font: inherit; font-size: .78rem; font-weight: 700;
        white-space: nowrap;
        cursor: pointer;
        transition: background .2s ease;
    }
    .lang-btn:hover { background: var(--ink-100); }
    .btn-nav-login {
        color: var(--ink-700); font-weight: 600; font-size: .88rem;
        padding: .45rem .3rem; white-space: nowrap;
    }
    .btn-nav-login:hover { color: var(--ink-900); }
    .btn-nav-pill {
        background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
        color: #fff; font-weight: 700; font-size: .85rem;
        padding: .58rem 1.15rem;
        border-radius: 999px;
        box-shadow: 0 6px 18px rgba(67,56,202,.28);
        white-space: nowrap;
        transition: transform .15s ease, box-shadow .15s ease;
    }
    .btn-nav-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(67,56,202,.34); }

    /* ---------- hero ---------- */
    .hero {
        position: relative; overflow: hidden;
        padding: 88px 0 96px;
        background:
            radial-gradient(900px 520px at 82% -10%, rgba(124,58,237,.42), transparent 62%),
            radial-gradient(760px 480px at 6% 108%, rgba(56,189,248,.18), transparent 60%),
            linear-gradient(158deg, #0a0a25 0%, #171348 45%, #2b2585 100%);
    }
    .hero::before {
        content: ''; position: absolute; inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: radial-gradient(720px 460px at 30% 20%, #000, transparent 78%);
        -webkit-mask-image: radial-gradient(720px 460px at 30% 20%, #000, transparent 78%);
    }
    .hero-inner {
        position: relative; z-index: 2;
        display: grid; grid-template-columns: 1.02fr .98fr;
        gap: 4rem; align-items: center;
    }
    .hero-content { color: #fff; }
    .hero-kicker {
        display: inline-flex; align-items: center; gap: .5rem;
        background: rgba(255,255,255,.09);
        border: 1px solid rgba(255,255,255,.16);
        padding: .38rem 1rem;
        border-radius: 999px;
        font-size: .74rem; font-weight: 700;
        letter-spacing: .1em; text-transform: uppercase;
        margin-bottom: 1.6rem;
    }
    .hero h1 {
        font-size: clamp(2.35rem, 4.6vw, 3.7rem);
        font-weight: 800; line-height: 1.08;
        letter-spacing: -.035em;
        margin-bottom: 1.35rem;
    }
    .hero h1 span {
        background: linear-gradient(120deg, #a5f3ea, #c7d2fe 55%, #a5b4fc);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
        font-size: 1.12rem;
        color: rgba(255,255,255,.76);
        max-width: 520px; line-height: 1.72;
        margin-bottom: 1.6rem;
    }
    .hero-link {
        display: inline-flex; align-items: center; gap: .4rem;
        color: #fff; font-weight: 700; font-size: .95rem;
        border-bottom: 1px solid rgba(255,255,255,.35);
        padding-bottom: 2px;
        transition: border-color .2s ease;
    }
    .hero-link:hover { border-color: #fff; }
    .hero-meta {
        margin-top: 1.5rem;
        font-size: .84rem;
        color: rgba(255,255,255,.6);
    }
    .hero-stats {
        display: flex; flex-wrap: wrap; gap: 2.4rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,.14);
    }
    .hero-stat-value { font-family: 'Manrope', sans-serif; font-size: 1.35rem; font-weight: 800; color: #fff; }
    .hero-stat-label { font-size: .74rem; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .09em; }
    .hero-visual { position: relative; }
    .hero-visual .ui { animation: floaty 7s ease-in-out infinite; }
    .hero-badge {
        position: absolute; right: -12px; bottom: -26px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: .85rem 1.1rem;
        box-shadow: 0 22px 50px -18px rgba(10,10,37,.6);
        animation: floaty 7s ease-in-out infinite reverse;
    }
    .hero-badge .k { font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
    .hero-badge .v { font-family: 'Manrope', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--primary-700); }

    /* ---------- capability strip ---------- */
    .strip { background: #fff; border-bottom: 1px solid var(--line); padding: 22px 0; }
    .strip-inner { display: flex; flex-wrap: wrap; gap: .55rem 1.6rem; justify-content: center; align-items: center; }
    .strip-item {
        display: inline-flex; align-items: center; gap: .45rem;
        font-size: .84rem; font-weight: 600; color: var(--ink-600);
    }
    .strip-item::before {
        content: ''; width: 6px; height: 6px; border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    }

    /* ---------- generic section furniture ---------- */
    .section-kicker {
        display: inline-block;
        background: var(--primary-50);
        color: var(--primary-700);
        font-size: .72rem; font-weight: 800;
        letter-spacing: .11em; text-transform: uppercase;
        padding: .35rem .85rem;
        border-radius: 999px;
    }
    .section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
    .section-head h2 {
        font-size: clamp(1.75rem, 3.2vw, 2.4rem);
        font-weight: 800; color: var(--ink-900);
        margin-top: .9rem;
    }
    .section-head p { margin-top: .85rem; color: var(--ink-500); font-size: 1.05rem; }

    /* ---------- steps ---------- */
    .steps { padding: 84px 0; background: #fff; }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .step {
        position: relative;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 1.8rem 1.6rem;
        background: linear-gradient(180deg, #fff, #fafbff);
    }
    .step-num {
        font-family: 'Manrope', sans-serif;
        font-size: .78rem; font-weight: 800;
        color: var(--primary-700);
        background: var(--primary-50);
        width: 30px; height: 30px; border-radius: 9px;
        display: grid; place-items: center;
        margin-bottom: 1rem;
    }
    .step h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink-900); margin-bottom: .5rem; }
    .step p { color: var(--ink-500); font-size: .95rem; line-height: 1.66; }

    /* ---------- audience ---------- */
    .audience { padding: 84px 0; background: linear-gradient(180deg, #f7f8ff, #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .audience-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem; }
    .audience-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink-900); margin-bottom: .5rem; }
    .audience-card p { color: var(--ink-500); font-size: .95rem; line-height: 1.66; }
    .audience-card-muted { background: rgba(255,255,255,.6); border-style: dashed; }
    .audience-card-muted h3 { color: var(--ink-600); }

    /* ---------- story sections ---------- */
    .story { padding: 92px 0; background: #fff; }
    .story.story-alt { background: linear-gradient(180deg, #f7f8ff, #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .story-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
        gap: clamp(2.5rem, 6vw, 5rem);
        align-items: center;
    }
    .story.story-alt .story-inner { grid-template-columns: minmax(300px, .92fr) minmax(0, 1fr); }
    .story.story-alt .story-content { order: 2; }
    .story.story-alt .story-visual { order: 1; }
    .story-kicker {
        display: inline-block;
        font-size: .72rem; font-weight: 800;
        letter-spacing: .11em; text-transform: uppercase;
        color: var(--primary-600);
        margin-bottom: .8rem;
    }
    .story-content h2 {
        font-size: clamp(1.6rem, 2.9vw, 2.2rem);
        font-weight: 800; color: var(--ink-900);
        line-height: 1.2; margin-bottom: .95rem;
    }
    .story-lead { color: var(--ink-500); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
    .story-bullets { list-style: none; display: grid; gap: .7rem; }
    .story-bullets li {
        position: relative; padding-left: 1.85rem;
        color: var(--ink-700); font-size: .95rem; line-height: 1.6;
    }
    .story-bullets li::before {
        content: ''; position: absolute; left: 0; top: .38rem;
        width: 18px; height: 18px; border-radius: 50%;
        background: var(--mint-50);
        box-shadow: inset 0 0 0 1px rgba(20,184,166,.35);
    }
    .story-bullets li::after {
        content: ''; position: absolute; left: 5px; top: .72rem;
        width: 7px; height: 4px;
        border-left: 2px solid var(--mint-700);
        border-bottom: 2px solid var(--mint-700);
        transform: rotate(-45deg);
    }
    .story-note { margin-top: 1.35rem; font-size: .86rem; color: var(--ink-400); }

    /* ---------- product mock UI ---------- */
    .ui {
        border-radius: 20px;
        border: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 30px 70px -28px rgba(30,27,75,.42), 0 2px 6px rgba(15,23,42,.04);
        overflow: hidden;
    }
    .ui-top {
        display: flex; align-items: center; gap: .45rem;
        padding: .7rem .95rem;
        border-bottom: 1px solid var(--line);
        background: linear-gradient(180deg, #fbfbff, #f4f5fc);
    }
    .ui-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-200); }
    .ui-title {
        font-size: .68rem; font-weight: 800; letter-spacing: .1em;
        text-transform: uppercase; color: var(--ink-400);
        margin-left: .45rem;
    }
    .ui-body { padding: 1.15rem; }
    .ui-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
    .ui-doc { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink-900); }
    .ui-sub { font-size: .72rem; color: var(--ink-400); letter-spacing: .04em; }
    .ui-total { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.55rem; color: var(--ink-900); text-align: right; font-variant-numeric: tabular-nums; }
    .ui-tabs { display: flex; gap: .3rem; padding: .55rem .95rem 0; border-bottom: 1px solid var(--line); background: #f6f7fd; }
    .ui-tab {
        font-size: .74rem; font-weight: 700;
        padding: .45rem .8rem;
        border-radius: 9px 9px 0 0;
        color: var(--ink-400);
    }
    .ui-tab.is-on { background: #fff; color: var(--primary-700); box-shadow: 0 -1px 0 var(--line) inset, 0 2px 0 #fff; }
    .ui-row {
        display: grid; grid-template-columns: minmax(0,1fr) auto;
        gap: .9rem; align-items: center;
        padding: .62rem 0;
        border-bottom: 1px dashed var(--ink-100);
    }
    .ui-row:last-child { border-bottom: 0; }
    .ui-row .t { font-size: .82rem; font-weight: 600; color: var(--ink-800); }
    .ui-row .s { font-size: .7rem; color: var(--ink-400); }
    .ui-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: .86rem; color: var(--ink-900); font-variant-numeric: tabular-nums; white-space: nowrap; }
    .ui-right { display: flex; align-items: center; gap: .6rem; }
    .pill {
        display: inline-block; font-size: .62rem; font-weight: 800;
        letter-spacing: .04em; padding: .22rem .55rem; border-radius: 999px; white-space: nowrap;
    }
    .pill-ok    { background: var(--mint-50);    color: var(--mint-700); }
    .pill-wait  { background: var(--amber-50);   color: var(--amber-700); }
    .pill-draft { background: var(--ink-50);     color: var(--ink-500); }
    .pill-new   { background: var(--primary-50); color: var(--primary-700); }
    .ui-foot {
        display: flex; align-items: center; justify-content: space-between; gap: 1rem;
        padding: .9rem 1.15rem;
        border-top: 1px solid var(--line);
        background: linear-gradient(180deg, #fafbff, #f4f5fc);
    }
    .ui-foot-label { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); }
    .ui-foot-value { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink-900); }
    .qr { width: 62px; height: 62px; border-radius: 10px; background: #fff; padding: 4px; border: 1px solid var(--line); }
    .qr svg { display: block; width: 100%; height: 100%; }
    .ui-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
    .ui-kpi { border: 1px solid var(--line); border-radius: 13px; padding: .75rem .8rem; background: linear-gradient(180deg, #fff, #fafbff); }
    .ui-kpi .k { font-size: .6rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-400); }
    .ui-kpi .v { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--ink-900); margin-top: .2rem; font-variant-numeric: tabular-nums; }
    .ui-kpi.is-due { border-color: var(--primary-200); background: linear-gradient(180deg, var(--primary-50), #fff); }
    .ui-kpi.is-due .v { color: var(--primary-700); }
    .ui-bars { display: flex; align-items: flex-end; gap: .3rem; height: 68px; margin-top: 1.1rem; }
    .ui-bars i { flex: 1; display: block; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--primary-400), var(--primary-600)); }
    .ui-bars i.is-muted { background: linear-gradient(180deg, var(--ink-100), var(--ink-200)); }
    .ui-axis { display: flex; gap: .3rem; margin-top: .4rem; }
    .ui-axis span { flex: 1; text-align: center; font-size: .58rem; font-weight: 700; color: var(--ink-300); text-transform: uppercase; letter-spacing: .05em; }
    .ui-chat { display: grid; gap: .6rem; }
    .ui-msg { border-radius: 13px; padding: .7rem .85rem; font-size: .82rem; line-height: 1.55; }
    .ui-msg.me { background: var(--primary-600); color: #fff; justify-self: end; max-width: 82%; border-bottom-right-radius: 4px; }
    .ui-msg.bot { background: var(--ink-50); color: var(--ink-700); max-width: 92%; border-bottom-left-radius: 4px; }
    .ui-drop {
        border: 1.5px dashed var(--primary-200);
        border-radius: 14px;
        background: var(--primary-50);
        padding: .95rem;
        display: flex; align-items: center; gap: .7rem;
        margin-bottom: .95rem;
    }
    .ui-drop svg { width: 22px; height: 22px; color: var(--primary-600); flex: none; }
    .ui-drop .t { font-size: .82rem; font-weight: 700; color: var(--primary-700); }
    .ui-drop .s { font-size: .7rem; color: var(--ink-500); }
    .ui-files { display: grid; gap: .5rem; }
    .ui-file {
        display: flex; align-items: center; gap: .7rem;
        border: 1px solid var(--line); border-radius: 12px;
        padding: .65rem .8rem; background: #fff;
    }
    .ui-file .ext {
        font-family: 'Manrope', sans-serif; font-weight: 800; font-size: .62rem;
        letter-spacing: .04em;
        padding: .3rem .45rem; border-radius: 7px;
        background: var(--ink-900); color: #fff; flex: none;
    }
    .ui-file .t { font-size: .8rem; font-weight: 600; color: var(--ink-800); }
    .ui-file .s { font-size: .68rem; color: var(--ink-400); }
    .ui-file .go { margin-left: auto; font-size: .68rem; font-weight: 800; color: var(--primary-600); text-transform: uppercase; letter-spacing: .06em; }

    /* ---------- extras grid ---------- */
    .extras { padding: 92px 0; background: #fff; }
    .extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
    .extra {
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 1.6rem;
        background: linear-gradient(180deg, #fff, #fafbff);
        transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .extra:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -22px rgba(67,56,202,.4); }
    .extra-icon {
        width: 40px; height: 40px; border-radius: 12px;
        background: var(--primary-50);
        display: grid; place-items: center;
        margin-bottom: .95rem;
    }
    .extra-icon svg { width: 19px; height: 19px; color: var(--primary-600); }
    .extra h3 { font-size: 1.03rem; font-weight: 700; color: var(--ink-900); margin-bottom: .4rem; }
    .extra p { font-size: .9rem; color: var(--ink-500); line-height: 1.62; }

    /* ---------- pricing ---------- */
    .pricing { padding: 92px 0; background: linear-gradient(180deg, #f7f8ff, #fff); border-top: 1px solid var(--line); }
    .pricing-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; align-items: stretch; }
    .price-card {
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 2rem;
        background: #fff;
    }
    .price-card.is-free { border-color: var(--primary-200); box-shadow: 0 26px 60px -30px rgba(67,56,202,.5); }
    .price-tag {
        display: inline-block; font-size: .68rem; font-weight: 800;
        letter-spacing: .1em; text-transform: uppercase;
        padding: .3rem .7rem; border-radius: 999px;
        background: var(--mint-50); color: var(--mint-700);
        margin-bottom: 1rem;
    }
    .price-card.is-paid .price-tag { background: var(--ink-50); color: var(--ink-500); }
    .price-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--ink-900); margin-bottom: .6rem; }
    .price-card > p { color: var(--ink-500); font-size: .95rem; line-height: 1.66; }
    .price-list { list-style: none; display: grid; gap: .62rem; margin-top: 1.35rem; }
    .price-list li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--ink-700); }
    .price-list li::before {
        content: '✓'; position: absolute; left: 0; top: -1px;
        color: var(--mint-600); font-weight: 800;
    }
    .price-card.is-paid .price-list li::before { content: '•'; color: var(--ink-300); font-size: 1.1rem; top: -3px; }
    .price-note { margin-top: 2rem; text-align: center; color: var(--ink-400); font-size: .9rem; }

    /* ---------- efaktura ---------- */
    .efaktura { padding: 92px 0; background: var(--ink-900); color: rgba(255,255,255,.72); }
    .efaktura .section-kicker { background: rgba(255,255,255,.1); color: #c7d2fe; }
    .efaktura h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-top: .9rem; }
    .efaktura-lead { max-width: 680px; margin: 1rem auto 0; font-size: 1.02rem; line-height: 1.72; color: rgba(255,255,255,.82); }
    .efaktura-cta-wrap { margin-top: 2rem; text-align: center; }
    .efaktura-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: .85rem 1.35rem;
        border-radius: 999px;
        background: #fff;
        color: var(--ink-900);
        font-weight: 700;
        text-decoration: none;
    }
    .efaktura-cta:hover { text-decoration: none; transform: translateY(-1px); }
    .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
    .tl-item { border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 1.5rem; background: rgba(255,255,255,.04); }
    .tl-when { font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #a5b4fc; margin-bottom: .55rem; }
    .tl-item p { font-size: .93rem; line-height: 1.62; }
    .tl-item.is-now { border-color: rgba(167,243,208,.35); background: rgba(20,184,166,.1); }
    .tl-item.is-now .tl-when { color: #5eead4; }

    /* ---------- footer ---------- */
    .landing-footer { background: #070b1a; color: #94a3b8; padding: 60px 0 36px; }
    .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 3rem; }
    .footer-brand { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: .7rem; }
    .footer-desc { font-size: .9rem; max-width: 300px; line-height: 1.7; }
    .footer-links { display: flex; gap: 3.5rem; }
    .footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .9rem; }
    .footer-col a { display: block; font-size: .9rem; color: #94a3b8; padding: .3rem 0; transition: color .2s ease; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
        display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
        padding-top: 2.2rem; margin-top: 2.2rem;
        border-top: 1px solid #16203a;
        font-size: .84rem;
    }

    /* ---------- responsive ---------- */
    @media (max-width: 1100px) {
        .main-header-inner {
            flex-wrap: wrap;
            align-items: center;
            row-gap: 0;
            padding-bottom: 0;
        }
        .nav-toggle { display: inline-flex; }
        .nav-actions { margin-left: 0; }
        .nav-links {
            display: none;
            order: 4;
            flex: 1 1 100%;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            padding: .75rem 0 1rem;
            border-top: 1px solid var(--line);
            margin-top: .35rem;
            white-space: normal;
        }
        .nav-links.is-open { display: flex; }
        .nav-dropdown-toggle { display: none; }
        .nav-dropdown-menu {
            position: static;
            transform: none;
            display: grid;
            min-width: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            gap: 0;
        }
        .nav-links > a,
        .nav-dropdown-menu a {
            padding: .72rem 0;
            border-bottom: 1px solid var(--line);
            font-size: .92rem;
        }
        .nav-dropdown-menu a:last-child { border-bottom: 1px solid var(--line); }
        .nav-links > a:last-child { border-bottom: 0; }
    }
    @media (max-width: 1024px) {
        .hero { padding: 64px 0 76px; }
        .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
        .hero-subtitle { max-width: none; }
        .hero-visual { max-width: 440px; }
        .hero-badge { right: 8px; bottom: -20px; }
        .story-inner,
        .story.story-alt .story-inner { grid-template-columns: 1fr; }
        .story.story-alt .story-content,
        .story.story-alt .story-visual { order: unset; }
        .story-visual { max-width: 480px; }
        .steps-grid, .audience-grid, .extras-grid, .timeline { grid-template-columns: 1fr 1fr; }
        .pricing-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
        .container { padding: 0 18px; }
        .utility-bar { display: none; }
        .hero h1 { font-size: 2.1rem; }
        .hero-stats { gap: 1.5rem 2rem; }
        .steps-grid, .audience-grid, .extras-grid, .timeline { grid-template-columns: 1fr; }
        .story, .steps, .audience, .extras, .pricing, .efaktura { padding: 60px 0; }
        .footer-links { flex-direction: column; gap: 2rem; }
        .btn-nav-pill { padding: .55rem .95rem; font-size: .8rem; }
        .lang-btn { padding: .35rem .55rem; }
        .ui-total { font-size: 1.25rem; }
        .ui-body { padding: .95rem; }
        .ui-row { gap: .5rem; }
        .ui-row .t { font-size: .78rem; }
        .ui-num { font-size: .8rem; }
        .ui-right { gap: .4rem; }
        .pill { font-size: .58rem; padding: .2rem .45rem; }
    }
    @media (max-width: 600px) {
        .brand-text { display: none; }
        .btn-nav-login { font-size: .82rem; }
        .nav-actions { gap: .5rem; }
    }
    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        *, *::before, *::after { animation: none !important; transition: none !important; }
    }

/* ---------- real product screenshots ---------- */
.shot {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 34px 80px -30px rgba(30,27,75,.5), 0 2px 6px rgba(15,23,42,.05);
    overflow: hidden;
}
.shot-bar {
    display: flex; align-items: center; gap: .45rem;
    padding: .62rem .85rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fbfbff, #f4f5fc);
}
.shot-bar .ui-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-200); }
.shot-bar .ui-title {
    font-size: .66rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--ink-400); margin-left: .45rem;
}
.shot img { display: block; width: 100%; height: auto; }
/* Crops end mid-row on purpose; fade the cut so it reads as "more below". */
.shot.is-crop { position: relative; }
.shot.is-crop::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
    pointer-events: none;
}
.shot-caption {
    margin-top: .85rem;
    font-size: .78rem;
    color: var(--ink-400);
    text-align: center;
}
.hero .shot { box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08); }
.hero .shot-caption { color: rgba(255,255,255,.45); }
.hero-qr {
    position: absolute; right: -14px; bottom: 34px;
    display: flex; align-items: center; gap: .75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .8rem .95rem;
    box-shadow: 0 22px 50px -18px rgba(10,10,37,.65);
}
.hero-qr .k { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.hero-qr .v { font-family: 'Manrope', sans-serif; font-size: .95rem; font-weight: 800; color: var(--ink-900); }
@media (max-width: 1024px) {
    .hero-qr { right: 10px; bottom: 20px; }
}
@media (max-width: 720px) {
    .hero-qr { position: static; margin-top: 1rem; justify-content: center; }
}

/* ---------- content pages (O programe, Kto to robí) ---------- */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 68px;
    background:
        radial-gradient(760px 420px at 80% -20%, rgba(124,58,237,.38), transparent 62%),
        linear-gradient(158deg, #0a0a25 0%, #171348 55%, #2b2585 100%);
    color: #fff;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(620px 380px at 25% 20%, #000, transparent 78%);
    -webkit-mask-image: radial-gradient(620px 380px at 25% 20%, #000, transparent 78%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-kicker { background: rgba(255,255,255,.1); color: #c7d2fe; }
.page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -.03em;
    margin-top: 1.1rem;
    max-width: 20ch;
}
.page-hero p {
    margin-top: 1.1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    max-width: 62ch;
}

.article { padding: 76px 0; background: #fff; }
.article.article-alt { background: linear-gradient(180deg, #f7f8ff, #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-inner { max-width: 760px; margin: 0 auto; }
.article-inner.is-wide { max-width: 1000px; }
.article h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800; color: var(--ink-900);
    margin-bottom: 1rem;
}
.article h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--ink-900);
    margin: 2rem 0 .6rem;
}
.article p { color: var(--ink-600); line-height: 1.78; margin-bottom: 1.1rem; }
.article p.lead { font-size: 1.1rem; color: var(--ink-500); }
.article ul { list-style: none; display: grid; gap: .7rem; margin: 1.2rem 0 1.6rem; }
.article ul li {
    position: relative; padding-left: 1.85rem;
    color: var(--ink-700); line-height: 1.7;
}
.article ul li::before {
    content: ''; position: absolute; left: 0; top: .5rem;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--mint-50);
    box-shadow: inset 0 0 0 1px rgba(20,184,166,.35);
}
.article ul li::after {
    content: ''; position: absolute; left: 5px; top: .84rem;
    width: 7px; height: 4px;
    border-left: 2px solid var(--mint-700);
    border-bottom: 2px solid var(--mint-700);
    transform: rotate(-45deg);
}
.article ul.is-plain li { padding-left: 1.85rem; }
.article ul.is-plain li::before { background: var(--ink-50); box-shadow: inset 0 0 0 1px var(--ink-100); }
.article ul.is-plain li::after {
    content: '–'; position: absolute; left: 4px; top: .2rem;
    width: auto; height: auto; border: 0; transform: none;
    color: var(--ink-400); font-weight: 700;
}
.callout {
    border: 1px solid var(--primary-200);
    background: linear-gradient(180deg, var(--primary-50), #fff);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    margin: 1.6rem 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.fact {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.3rem;
    background: linear-gradient(180deg, #fff, #fafbff);
}
.fact .k { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.fact .v { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink-900); margin-top: .35rem; line-height: 1.4; }
.fact .s { font-size: .85rem; color: var(--ink-500); margin-top: .35rem; line-height: 1.55; }
.legal {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    margin-top: 1.8rem;
}
.legal-row {
    display: grid;
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    gap: 1.5rem;
    padding: .95rem 1.5rem;
    border-bottom: 1px solid var(--line);
}
.legal-row:last-child { border-bottom: 0; }
.legal-row:nth-child(odd) { background: #fbfbfe; }
.legal-row dt {
    font-size: .78rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    color: var(--ink-400);
    align-self: center;
}
.legal-row dd {
    margin: 0;
    color: var(--ink-800);
    line-height: 1.6;
    font-variant-numeric: tabular-nums;
}
.legal-row dd strong { font-weight: 700; }
.legal-note { margin-top: 1.1rem; font-size: .86rem; color: var(--ink-400); line-height: 1.65; }
@media (max-width: 640px) {
    .legal-row { grid-template-columns: 1fr; gap: .3rem; padding: .9rem 1.15rem; }
}

@media (max-width: 900px) {
    .fact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .page-hero { padding: 52px 0 48px; }
    .article { padding: 52px 0; }
}
