

.url-pill {
    flex: 1;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.url-pill.dead {
    background: rgba(220, 60, 60, 0.08);
    border: 1px solid rgba(220, 60, 60, 0.18);
    color: #d08080;
    text-decoration: line-through;
}

.url-pill.live {
    background: rgba(79, 142, 247, 0.08);
    border: 1px solid rgba(79, 142, 247, 0.22);
    color: #7fb3fa;
}

.demo-arrow { color: #2e2e2c; font-size: 14px; flex-shrink: 0; }

.demo-meta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #ebebea;
    margin-top: 10px;
}

.demo-meta strong {
    color: #7fb3fa;
    font-weight: 500;
}

/* ─── Features ──────────────────────────────── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 96px;
}

.feature {
    background: #0d1017;
    padding: 28px 24px;
    border-radius: 0;
    transition: background 0.2s;
}

.feature:hover { background: #111520; }

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(79, 142, 247, 0.08);
    border: 1px solid rgba(79, 142, 247, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}

.feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: #e8e6e2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature p {
    font-size: 13px;
    color: #4a4a48;
    line-height: 1.75;
}

/* ─── CTA Section ───────────────────────────── */
.cta-section {
    text-align: center;
    padding: 80px 0 96px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 15px;
    color: #ebebea;
    margin-bottom: 32px;
}

/* ─── Footer ────────────────────────────────── */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer p {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: #ebebea;
}

.footer nav a {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: #ebebea;
    padding: 0;
    margin-left: 20px;
}

.footer nav a:hover {
    color: #7fb3fa;
    background: transparent;
}

/* ─── Cookie Banner ─────────────────────────── */
#cookie-banner {
    font-family: 'DM Mono', monospace;
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 768px) {
    .stats-strip,
    .features {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        letter-spacing: -1px;
    }


    .demo-row {
        flex-direction: column;
        align-items: stretch;
    }

    .demo-arrow {
        text-align: center;
    }
}

.pricing {
    text-align: center;
    margin-bottom: 100px;
}

.pricing-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.pricing-head p {
    color: #c8c6c2;
    max-width: 480px;
    margin: 0 auto 40px;
}

.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    background: #0d1017;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 40px 28px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f8ef7, #a855f7);
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 100px;
    color: #fff;
}

.pricing-highlight {
    margin: 24px 0;
}

.pricing-highlight span {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #4f8ef7, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-highlight small {
    display: block;
    font-size: 12px;
    color: #888;
}

.pricing-list {
    list-style: none;
    margin: 24px 0;
    text-align: left;
    font-size: 14px;
}

.pricing-list li {
    margin-bottom: 10px;
    color: #e8e6e2;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.login-box {
    max-width: 400px;
    margin: 120px auto;
    background: #0d1017;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #080a0f;
    color: #fff;
}

/* ─── Dashboard ───────────────────────── */

.dash-head {
    margin: 60px 0 30px;
}

.dash-head h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 6px;
}

.dash-head p {
    color: #888;
}

/* Actions */
.dash-actions {
    margin-bottom: 20px;
}

/* Tabelle */
.dash-table {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.dash-table-head,
.dash-row {
    display: grid;
    grid-template-columns: 80px 1fr 160px;
    padding: 14px 16px;
}

.dash-table-head {
    background: rgba(255,255,255,0.03);
    font-weight: 700;
    color: #aaa;
    font-size: 12px;
}

.dash-row {
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #e8e6e2;
}

.dash-row:hover {
    background: rgba(255,255,255,0.02);
}

.url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ─────────────────────────────────────────────
Linkflux.io – v2 Clean SaaS Styles
Fokus: Klarheit, Trust, Conversion
───────────────────────────────────────────── */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* Reset */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

/* Base */
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: #080a0f;
color: #e6e8ec;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

/* Container */
.container {
width: 90%;
max-width: 1080px;
margin: 0 auto;
padding: 0 24px;
}

/* Header */
.header {
background: rgba(8, 10, 15, 0.85);
border-bottom: 1px solid rgba(255,255,255,0.06);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(12px);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}

.logo img {
height: 70px;
}

/* Nav */
nav a {
color: #cfd3dc;
text-decoration: none;
font-size: 14px;
font-weight: 500;
padding: 6px 14px;
border-radius: 6px;
transition: all 0.15s ease;
}

nav a:hover {
color: #fff;
background: rgba(255,255,255,0.05);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 64px;
        right: 0;
        background: #0d1017;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    nav.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 12px 0;
    }
}

.btn-nav-cta {
background: linear-gradient(135deg, #4f8ef7, #a855f7);
color: #fff !important;
font-weight: 600;
}

/* Hero */
.hero {
text-align: center;
padding: 120px 0 100px;
position: relative;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 700px;
height: 360px;
background: radial-gradient(
ellipse at center,
rgba(79,142,247,0.12),
rgba(168,85,247,0.08),
transparent 70%
);
filter: blur(40px);
opacity: 0.6;
}

.hero h1 {
font-size: clamp(38px, 6vw, 64px);
font-weight: 700;
letter-spacing: -1px;
line-height: 1.05;
color: #fff;
margin-bottom: 20px;
}

.hero .grad {
background: linear-gradient(135deg, #4f8ef7, #a855f7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero p {
font-size: 18px;
color: #b8bcc6;
max-width: 520px;
margin: 0 auto 42px;
}

/* Buttons */
.btn {
display: inline-block;
padding: 13px 26px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
transition: all 0.15s ease;
}

.btn-primary {
background: linear-gradient(135deg, #4f8ef7, #a855f7);
color: #fff;
box-shadow: 0 4px 14px rgba(79,142,247,0.25);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 6px 18px rgba(79,142,247,0.35);
}

.btn-ghost {
border: 1px solid rgba(255,255,255,0.08);
color: #cfd3dc;
}

/* Stats */
.stats-strip {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: rgba(255,255,255,0.05);
border-radius: 12px;
overflow: hidden;
margin-bottom: 80px;
}

.stat-item {
background: #0d1017;
padding: 28px 20px;
text-align: center;
}

.stat-num {
font-size: 30px;
font-weight: 700;
}

.stat-label {
font-size: 12px;
color: #9aa0aa;
}

/* Demo */
.demo-block {
background: #0d1017;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 12px;
padding: 28px;
margin-bottom: 80px;
}

/* Features */
.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
border-radius: 12px;
overflow: hidden;
margin-bottom: 96px;
}

.feature {
background: #0d1017;
padding: 32px 26px;
transition: all 0.2s ease;
}

.feature:hover {
background: #111520;
transform: translateY(-2px);
}

.feature h3 {
font-size: 16px;
font-weight: 600;
color: #fff;
}

.feature p {
font-size: 14px;
color: #9aa0aa;
}

/* Pricing */
.pricing {
text-align: center;
margin-bottom: 100px;
}

.pricing-card {
max-width: 420px;
margin: 0 auto;
background: #0d1017;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 14px;
padding: 40px 28px;
}

.pricing-highlight span {
font-size: 42px;
font-weight: 700;
}

/* Footer */
.footer {
border-top: 1px solid rgba(255,255,255,0.05);
padding: 24px 0;
font-size: 12px;
color: #9aa0aa;
}

/* Mono (nur gezielt!) */
.link-copy-wrap input,
.url-pill,
.row-id {
font-family: 'DM Mono', monospace;
}

/* Responsive */
@media (max-width: 768px) {
.features,
.stats-strip {
grid-template-columns: 1fr;
}
}

/* ─── Produktbox Showcase ─── */
.pb-showcase {
    margin: 80px 0;
    padding: 60px 40px;
    background: #0d0d1a;
    border-radius: 16px;
    border: 1px solid #1e1e3a;
}

.pb-showcase-head {
    text-align: center;
    margin-bottom: 48px;
}
.pb-showcase-head h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 12px 0;
}
.pb-showcase-head p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
}

.pb-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pb-code-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pb-code {
    background: #060610;
    border: 1px solid #1e1e3a;
    border-radius: 10px;
    padding: 20px 24px;
    font-family: monospace;
    font-size: 0.88rem;
    color: #a78bfa;
    line-height: 1.7;
    overflow-x: auto;
    margin: 0 0 20px;
}

.pb-code-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pb-code-features span {
    background: #1e1e3a;
    color: #7fb3fa;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
}

.pb-live-block {
    display: flex;
    flex-direction: column;
}

@media (max-width: 700px) {
    .pb-showcase {
        padding: 32px 20px;
    }
    .pb-showcase-wrap {
        grid-template-columns: 1fr;
    }
}