/* ============================================
   LANDING PAGE – Vera
   ============================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0d0d1a;
    color: #ccc;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Indigo-Akzent (Tactyc-Style) */
:root {
    --landing-accent: #6366f1;
    --landing-accent-hover: #4f46e5;
    --landing-accent-subtle: rgba(99, 102, 241, 0.15);
    --landing-bg-dark: #0d0d1a;
    --landing-bg-card: rgba(255,255,255,0.04);
    --landing-border: rgba(255,255,255,0.08);
}

/* ── NAV ──────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.nav.scrolled {
    background: rgba(13, 13, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.nav-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}
.nav-link:hover { color: #fff; }

.nav-btn {
    background: var(--landing-accent);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.nav-btn:hover { background: var(--landing-accent-hover); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.floating-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Leichte Vignette: reduziert den hellen Strahl, bleibt aber hell genug */
.hero-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        ellipse 75% 65% at 50% 45%,
        rgba(13, 13, 26, 0.4) 0%,
        rgba(13, 13, 26, 0.12) 55%,
        transparent 100%
    );
}

.hero-inner { max-width: 720px; position: relative; z-index: 2; }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(135deg, #6366f1, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--landing-accent-subtle);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

.hero-subtitle strong { color: #e0e0e0; font-weight: 600; }

/* ── AUSSCHREIBUNGSFINDER ───────────────────── */

.finder {
    padding: 96px 24px 100px;
    background: linear-gradient(180deg, #080816 0%, #0f0f20 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.finder-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.finder-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.finder-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #818cf8;
    margin-bottom: 12px;
}

.finder-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.finder-lead {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.75;
}

.finder-lead strong { color: #e5e5e5; font-weight: 600; }

.finder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 900px) {
    .finder-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
        align-items: start;
    }
}

.finder-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.finder-list li {
    display: grid;
    gap: 6px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.finder-list li:first-child { padding-top: 0; }
.finder-list li:last-child { border-bottom: none; padding-bottom: 0; }

.finder-li-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.finder-li-text {
    display: block;
    font-size: 0.9rem;
    color: #9494a0;
    line-height: 1.65;
}

.finder-aside {
    position: relative;
}

.finder-aside-inner {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 28px 26px;
    height: 100%;
}

.finder-aside-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 10px;
}

.finder-aside-text {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.65;
    margin-bottom: 20px;
}

.finder-disclaimer {
    font-size: 0.75rem;
    color: #6b6b78;
    line-height: 1.55;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
}

/* ── BUTTONS ──────────────────────────────── */

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.btn-primary {
    background: rgba(255,255,255,0.95);
    color: #0d0d1a;
    border-color: rgba(255,255,255,0.9);
}
.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ── FEATURES ─────────────────────────────── */

.features {
    padding: 100px 24px;
    background: #0f0f20;
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.features .section-header .section-title {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.section-header { margin-bottom: 48px; }
.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    border-color: var(--landing-accent-subtle);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}

.feature-card--highlight {
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.06);
}

.feature-icon,
.feature-icon-wrap {
    margin-bottom: 16px;
}
.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #a5b4fc;
}
.feature-icon-wrap.warn svg { color: #fbbf24; }
.feature-icon-wrap.accent svg { color: #6366f1; }

.feature-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── HOW IT WORKS ─────────────────────────── */

.how-it-works {
    padding: 100px 24px;
    background: #0d0d1a;
}

.how-inner { max-width: 900px; margin: 0 auto; }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--landing-accent-subtle);
    color: #a5b4fc;
    border: 2px solid var(--landing-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.step p {
    color: #888;
    font-size: 0.85rem;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--landing-accent), var(--landing-accent) 6px, transparent 6px, transparent 12px);
    align-self: center;
    margin-top: 60px;
}

/* ── CTA ──────────────────────────────────── */

.cta {
    padding: 100px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        #0f0f20;
}

.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }

.cta .btn-large {
    padding: 20px 52px;
    font-size: 1.15rem;
}

.cta h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta p {
    color: #888;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* ── FOOTER ───────────────────────────────── */

.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    background: #0a0a16;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    color: #666;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-copy {
    color: #444;
    font-size: 0.8rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #aaa; }

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 640px) {
    .steps { flex-direction: column; align-items: center; }
    .step-connector {
        width: 2px;
        height: 24px;
        margin-top: 0;
        margin-bottom: 0;
        background: repeating-linear-gradient(180deg, var(--landing-accent), var(--landing-accent) 6px, transparent 6px, transparent 12px);
    }
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
