/* Verejné stránky (landing, prihlásenie, registrácia). */
body.site { background: #f5f6fa; color: var(--text); }
.site-nav { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; }
.site-nav .brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: -.02em; }
.site-nav .brand .mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, #6366f1, #a855f7); display: grid; place-items: center; color: #fff; box-shadow: 0 4px 12px rgba(99, 102, 241, .35); }
.site-nav .links { margin-left: auto; display: flex; gap: .5rem; align-items: center; }
.hero { padding: 4rem 0 3rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.hero h1 span { background: linear-gradient(90deg, #4f46e5, #a855f7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.125rem; color: var(--text-2); max-width: 680px; margin: 1.25rem auto 0; }
.hero .cta { margin-top: 1.75rem; display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-lg { padding: .7rem 1.4rem; font-size: 1rem; border-radius: 10px; }
.hero .note { margin-top: .9rem; font-size: .8rem; color: var(--muted); }
.mock { margin: 2.5rem auto 0; max-width: 960px; border-radius: 16px; background: #0f1222; box-shadow: 0 30px 80px rgba(15, 18, 34, .25); overflow: hidden; border: 1px solid rgba(255, 255, 255, .06); text-align: left; }
.mock .bar { display: flex; gap: .4rem; padding: .7rem .9rem; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.mock .bar i { width: 10px; height: 10px; border-radius: 50%; background: #2b3050; display: block; }
.mock .body { display: grid; grid-template-columns: 1fr 260px; min-height: 300px; }
.mock .screen { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.mock .page { flex: 1; background: #fff; border-radius: 8px; padding: 1rem; position: relative; overflow: hidden; }
.mock .page .l { height: 10px; border-radius: 5px; background: #e5e7ef; margin-bottom: .6rem; }
.mock .page .l.w1 { width: 45%; background: #c7cbe0; height: 16px; }
.mock .page .l.w2 { width: 80%; } .mock .page .l.w3 { width: 65%; } .mock .page .l.w4 { width: 30%; background: #4f46e5; height: 28px; border-radius: 7px; margin-top: 1rem; }
.mock .cursor { position: absolute; left: 32%; top: 62%; color: #0f1222; font-size: 1.2rem; animation: cur 4s infinite ease-in-out; }
.mock .ring { position: absolute; left: 35%; top: 66%; width: 26px; height: 26px; border-radius: 50%; border: 2px solid #ea580c; animation: ring 4s infinite; opacity: 0; }
@keyframes cur { 0% { left: 60%; top: 20%; } 40% { left: 32%; top: 62%; } 55% { left: 33%; top: 63%; } 70% { left: 32%; top: 62%; } 100% { left: 60%; top: 20%; } }
@keyframes ring { 0%, 40% { opacity: 0; transform: scale(.4); } 50% { opacity: 1; transform: scale(1); } 65% { opacity: 0; transform: scale(1.6); } 100% { opacity: 0; } }
.mock .scrubline { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .12); position: relative; }
.mock .scrubline b { position: absolute; top: -4px; width: 3px; height: 14px; border-radius: 2px; }
.mock .side { border-left: 1px solid rgba(255, 255, 255, .06); padding: 1rem; color: #c7cbe0; font-size: .78rem; }
.mock .side .ev { display: flex; gap: .5rem; padding: .4rem 0; border-bottom: 1px solid rgba(255, 255, 255, .06); align-items: center; }
.mock .side .ev .t { font-family: var(--mono); color: #7c81a0; min-width: 34px; }
.mock .side .ev i { font-size: .85rem; }
.section { padding: 3rem 0; }
.section h2 { font-size: 1.75rem; font-weight: 750; letter-spacing: -.03em; text-align: center; margin-bottom: .5rem; }
.section .sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 2.25rem; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.35rem; height: 100%; box-shadow: var(--shadow); }
.feature .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.25rem; margin-bottom: .9rem; }
.feature h3 { font-size: 1rem; font-weight: 650; margin-bottom: .35rem; }
.feature p { color: var(--text-2); font-size: .875rem; margin: 0; line-height: 1.55; }
.steps { counter-reset: s; }
.step-card { position: relative; padding: 1.5rem 1.5rem 1.5rem 4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; height: 100%; }
.step-card::before { counter-increment: s; content: counter(s); position: absolute; left: 1.25rem; top: 1.4rem; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: grid; place-items: center; }
.step-card h3 { font-size: 1rem; font-weight: 650; }
.step-card p { color: var(--text-2); font-size: .875rem; margin: 0; }
.site-footer { padding: 2rem 0 3rem; color: var(--muted); font-size: .8rem; text-align: center; border-top: 1px solid var(--border); margin-top: 2rem; }
.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1rem; }
.auth-card { width: 100%; max-width: 440px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 20px 60px rgba(15, 18, 34, .08); padding: 2rem; }
.auth-card.wide { max-width: 560px; }
.auth-card .brand { display: flex; align-items: center; justify-content: center; gap: .55rem; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 1.5rem; color: var(--text); }
.auth-card .brand .mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, #6366f1, #a855f7); display: grid; place-items: center; color: #fff; }
.auth-card h1 { font-size: 1.35rem; text-align: center; margin-bottom: .25rem; }
.auth-card .sub { text-align: center; color: var(--muted); font-size: .875rem; margin-bottom: 1.5rem; }
.auth-card .form-control { padding: .6rem .8rem; }
.auth-card .foot { text-align: center; margin-top: 1.25rem; font-size: .85rem; color: var(--muted); }
.auth-card fieldset legend { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin: 1rem 0 .5rem; }
