:root {
    /* Brand palette — mirrors the in-app loader */
    --bg: #14101f;
    --bg-deep: #0e0b16;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-2: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --cream: #fbf3e6;
    --text: #f4f0fa;
    --text-secondary: #ada4c2;
    --purple: #8b5cf6;
    --pink: #d946ef;
    --orange: #f97316;
    --green: #22c55e;
    --gradient: linear-gradient(135deg, #8b5cf6 0%, #d946ef 48%, #f97316 100%);
    --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(249, 115, 22, 0.14) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

/* Animated brand background */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 12% 8%, rgba(109, 91, 158, 0.35) 0%, transparent 55%),
        radial-gradient(120% 120% at 90% 92%, rgba(217, 70, 239, 0.22) 0%, transparent 50%),
        var(--bg);
}

.glow {
    position: absolute;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    animation: glow-breathe 9s ease-in-out infinite;
}

.glow-1 {
    top: -18%;
    left: -10%;
    background: var(--purple);
}

.glow-2 {
    bottom: -22%;
    right: -12%;
    background: var(--orange);
    animation-delay: 1.5s;
}

@keyframes glow-breathe {
    0%, 100% { opacity: 0.16; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.12); }
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* ---------- Nav ---------- */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 11, 22, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.9rem 0;
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Wordmark logo (text-based, used in nav + footer + legal pages) */
.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--cream);
    text-decoration: none;
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
}

.logo::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    margin-bottom: 5px;
    box-shadow: 0 0 10px var(--green);
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cream);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.6rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s ease;
}

.dropdown:hover .dropbtn {
    background: var(--surface-2);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    background: #1b1626;
    min-width: 170px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    overflow: hidden;
    z-index: 10;
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: 0.7rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: var(--surface);
    color: var(--cream);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 12px 30px rgba(217, 70, 239, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(217, 70, 239, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--cream);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

/* ---------- Section helpers ---------- */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.4rem, 7vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}

h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-head p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 1.75rem 5rem;
    gap: 4rem;
}

.hero-content {
    flex: 1.1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-content p.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.4rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
    animation: float 6s ease-in-out infinite;
    border-radius: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ---------- Animated brand logo (mirrors the app loader) ---------- */
.brand-logo {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    margin-bottom: 1.8rem;
    padding: 0.4rem 0;
}

.brand-logo .sut-word {
    font-size: clamp(3.2rem, 9vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--cream);
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    display: inline-flex;
}

.brand-logo .sut-word span {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    animation: letter-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-logo .sut-word span:nth-child(1) { animation-delay: 0.1s; }
.brand-logo .sut-word span:nth-child(2) { animation-delay: 0.23s; }
.brand-logo .sut-word span:nth-child(3) { animation-delay: 0.36s; }

@keyframes letter-in {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.brand-logo .sut-dot {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0 0 0.85em 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 24px var(--green), 0 0 8px var(--green);
    opacity: 0;
    transform: translateY(-40px) scale(0);
    animation: dot-drop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes dot-drop {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.brand-logo .sut-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    animation: halo 1.8s ease-out 1.4s infinite;
}

@keyframes halo {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* ---------- Feature grid ---------- */
.features {
    padding: 5rem 1.75rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 2.2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.4);
    background: var(--surface-2);
}

.feature-card .icon {
    font-size: 2rem;
    width: 3.4rem;
    height: 3.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--gradient-soft);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.3rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--cream);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.97rem;
}

/* ---------- Filter chips showcase ---------- */
.filters-section {
    padding: 4rem 1.75rem;
}

.filters-wrap {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
}

.chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.chip {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    background: var(--surface-2);
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 70, 239, 0.5);
}

/* ---------- Push USP ---------- */
.push-usp {
    background: rgba(255, 255, 255, 0.018);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 6rem 0;
}

.push-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.push-info {
    flex: 1.2;
}

.push-info p {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.push-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.push-img {
    width: 100%;
    max-width: 340px;
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.usp-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.usp-list li {
    padding-left: 2.2rem;
    position: relative;
    color: var(--text-secondary);
}

.usp-list li strong {
    color: var(--cream);
}

.usp-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--green);
    font-weight: 900;
    font-size: 0.8rem;
}

/* ---------- Business / provider section ---------- */
.business-section {
    padding: 6rem 1.75rem;
}

.business-card {
    background: var(--gradient-soft);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.business-content {
    flex: 1.1;
}

.business-content p {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.business-visual {
    flex: 1;
}

.admin-mockup {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    border: 1px solid var(--glass-border);
}

/* "So funktioniert's" steps */
.steps {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.step-text strong {
    color: var(--cream);
    display: block;
    margin-bottom: 0.15rem;
}

.step-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.2rem 0.5rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
}

.stat-value {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.business-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ---------- Footer ---------- */
.glass-footer {
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--cream);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .glow, .floating-mockup, .badge .dot, .brand-logo .sut-dot::after { animation: none; }
    .brand-logo .sut-word span, .brand-logo .sut-dot { opacity: 1; transform: none; filter: none; animation: none; }
}

/* ---------- Legal pages ---------- */
.legal-page .container {
    padding-top: 4rem;
    padding-bottom: 5rem;
    max-width: 860px;
}

.legal-page .legal-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: clamp(1.75rem, 5vw, 3.5rem);
    border-radius: 1.5rem;
}

.legal-page .legal-card h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin-bottom: 2rem;
}

.legal-page .content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--cream);
}

.legal-page .content h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text);
}

.legal-page .content p,
.legal-page .content li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.legal-page .content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page .content a {
    color: var(--pink);
}

/* ---------- Responsive ---------- */
@media (max-width: 968px) {
    .hero,
    .push-flex,
    .business-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p.lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns,
    .brand-logo {
        justify-content: center;
    }

    .push-info .usp-list {
        text-align: left;
    }

    .steps {
        text-align: left;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .business-card {
        padding: 3rem 2rem;
    }

    .push-mockup { order: -1; }
}

@media (max-width: 768px) {
    .nav-links .nav-link { display: none; }

    .hero {
        padding: 3.5rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .features,
    .business-section { padding: 4rem 1.5rem; }

    .push-usp { padding: 4rem 0; }

    .filters-wrap { padding: 2rem 1.25rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; }
    .stats-grid { gap: 0.6rem; }
    .stat-item { padding: 0.9rem 0.3rem; }
}

/* =====================================================================
   Pure-CSS app mockups (no phone photos) — brand-styled UI recreations
   ===================================================================== */

/* ---------- Hero: live-map phone ---------- */
.ui-phone {
    width: 100%;
    max-width: 310px;
    aspect-ratio: 310 / 650;
    background: linear-gradient(165deg, #221b38, #100c1b);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2.6rem;
    padding: 0.75rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: float 7s ease-in-out infinite;
}

.ui-phone__screen {
    position: relative;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #100c1b;
}

.ui-phone__notch {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 0.35rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.ui-map {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(80% 60% at 28% 18%, rgba(139, 92, 246, 0.22), transparent 60%),
        radial-gradient(70% 60% at 82% 82%, rgba(249, 115, 22, 0.16), transparent 60%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px),
        #100c1b;
}

.ui-map::before,
.ui-map::after {
    content: '';
    position: absolute;
    inset: -20%;
}

.ui-map::before { background: linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.06) 47% 50%, transparent 51%); }
.ui-map::after { background: linear-gradient(58deg, transparent 62%, rgba(255, 255, 255, 0.05) 63% 65%, transparent 66%); }

.ui-pin {
    position: absolute;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--gradient);
    box-shadow: 0 4px 10px rgba(217, 70, 239, 0.5);
    z-index: 2;
}

.ui-pin::after {
    content: '';
    position: absolute;
    inset: 0.24rem;
    background: #fff;
    border-radius: 50%;
}

.ui-pin--hot {
    width: 1.25rem;
    height: 1.25rem;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.6);
}

.ui-pin--hot::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.6);
    animation: pin-pulse 1.8s ease-out infinite;
}

@keyframes pin-pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.ui-pin--muted { background: rgba(255, 255, 255, 0.3); box-shadow: none; }
.ui-pin--muted::after { background: rgba(255, 255, 255, 0.55); }

.ui-topbar {
    position: relative;
    z-index: 1;
    padding: 1.7rem 0.8rem 0;
}

.ui-search {
    background: rgba(20, 16, 32, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 0.8rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ui-chips {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.55rem;
    flex-wrap: wrap;
}

.ui-chip {
    font-size: 0.68rem;
    padding: 0.3rem 0.6rem;
    border-radius: 2rem;
    background: rgba(20, 16, 32, 0.78);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    white-space: nowrap;
}

.ui-chip--on {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    font-weight: 700;
}

.ui-bottom {
    position: relative;
    z-index: 1;
    padding: 0 0.7rem 0.7rem;
}

.ui-spotcard {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(18, 14, 28, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1.1rem;
    padding: 0.65rem;
    margin-bottom: 0.6rem;
}

.ui-spotcard__thumb {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.7rem;
    background: var(--gradient-soft);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.ui-spotcard__info { flex: 1; min-width: 0; }
.ui-spotcard__info b { display: block; font-size: 0.85rem; color: var(--cream); }
.ui-spotcard__info span { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--text-secondary); }

.ui-live {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.ui-spotcard__dist { font-size: 0.72rem; font-weight: 700; color: var(--cream); flex-shrink: 0; }

.ui-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.65rem 1.5rem;
    background: rgba(12, 9, 18, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 1.1rem;
}

.ui-nav__item { width: 1.4rem; height: 0.4rem; border-radius: 2rem; background: rgba(255, 255, 255, 0.18); }
.ui-nav__item--on { background: var(--gradient); width: 1.7rem; }

/* ---------- Push section: notification stack ---------- */
.ui-push-stack {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    max-width: 380px;
}

.ui-push-card {
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem 1.05rem;
    border-radius: 1.25rem;
    background: rgba(30, 24, 45, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.ui-push-card:nth-child(2) { animation-delay: 0.8s; }
.ui-push-card:nth-child(3) { animation-delay: 1.6s; opacity: 0.85; }

.ui-push-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    background: var(--gradient);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.35rem;
    font-weight: 900;
    font-size: 0.72rem;
    color: #fff;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.ui-push-card__icon::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--green);
    margin: 0 0 0.15rem 1px;
    box-shadow: 0 0 6px var(--green);
}

.ui-push-card__body { flex: 1; min-width: 0; }

.ui-push-card__top {
    display: flex;
    justify-content: space-between;
    font-size: 0.66rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.2rem;
}

.ui-push-card__title { font-weight: 700; font-size: 0.95rem; color: var(--cream); margin-bottom: 0.1rem; }
.ui-push-card__text { font-size: 0.85rem; color: var(--text-secondary); }

/* ---------- Business section: admin dashboard panel ---------- */
.ui-dash {
    width: 100%;
    background: linear-gradient(165deg, #1b1629, #131020);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.ui-dash__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.ui-dash__title { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; color: var(--cream); font-size: 0.95rem; }
.ui-dash__title i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.ui-dash__tag { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-secondary); }

.ui-dash__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.ui-dash__stat {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 0.9rem;
    padding: 0.8rem 0.7rem;
}

.ui-dash__stat b {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ui-dash__stat span { font-size: 0.64rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; }

.ui-dash__row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    margin-bottom: 0.65rem;
}

.ui-dash__thumb {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.7rem;
    background: var(--gradient-soft);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.ui-dash__info { flex: 1; min-width: 0; }
.ui-dash__info b { display: block; color: var(--cream); font-size: 0.88rem; }
.ui-dash__info span { font-size: 0.72rem; color: var(--text-secondary); }

.ui-dash__btn {
    padding: 0.5rem 0.9rem;
    border-radius: 0.7rem;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 0.76rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .ui-phone { max-width: 270px; }
}

@media (prefers-reduced-motion: reduce) {
    .ui-phone, .ui-push-card, .ui-pin--hot::before, .ui-live { animation: none; }
}
