/* Roadlight – Landingpage
   Eigenständiges Stylesheet in der Markenpalette: Creme + Schwarz als Basis,
   Indigo-Blau als Akzent. Bewusst schlank und unabhängig von der Board-SPA. */

:root {
    /* Basis: Creme & Schwarz */
    --ink: #1A1A1A;
    --ink-hover: #000000;

    /* Akzent: Indigo-Blau */
    --accent: #4F46E5;
    --accent-hover: #4338CA;
    --accent-light: rgba(79, 70, 229, 0.10);

    --success: #3A8F5C;

    --bg: #FAF8F5;
    --bg-alt: #F3F0EB;
    --surface: #FFFFFF;

    --text: #1A1A1A;
    --secondary: #6B6560;
    /* Abgedunkelt ggü. #A49E96, damit Info-Text WCAG-AA (>=4.5:1) auf
       Creme (--bg) und --bg-alt erfüllt. */
    --muted: #6E675F;
    --border: #E8E4DD;
    --border-light: #F0ECE6;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.05);

    --radius-sm: 8px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* Nur für Screenreader sichtbar (z. B. Tabellen-Caption). */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: 13px 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-alt); border-color: var(--muted); }
.btn-ghost { background: transparent; color: var(--secondary); padding: 10px 14px; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 248, 245, 0.9);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}
.brand .logo {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.nav-menu { display: contents; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--secondary); font-weight: 500; font-size: 0.95rem; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--text); padding: 8px; }

/* ---------- Section rhythm ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
.section-head p { color: var(--secondary); font-size: 1.1rem; margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 64px; text-align: center; }
.hero h1 {
    font-size: clamp(2.2rem, 5.4vw, 3.4rem);
    max-width: 820px;
    margin: 0 auto;
}
.hero .subline {
    max-width: 620px;
    margin: 22px auto 0;
    font-size: 1.18rem;
    color: var(--secondary);
}
.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}
.trust {
    display: flex;
    gap: 10px 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { color: var(--success); flex-shrink: 0; }

/* ---------- Board preview mockup ---------- */
.preview { padding-top: 24px; }
.board-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.board-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-alt);
}
.dot { width: 11px; height: 11px; border-radius: var(--radius-full); background: #D9D3CB; }
.board-url {
    margin-left: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}
.board-body { padding: 22px; }
.board-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.board-tab {
    font-family: inherit;
    font-size: 0.88rem; font-weight: 600;
    padding: 7px 14px; border-radius: var(--radius-full);
    color: var(--secondary); background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.board-tab:hover { color: var(--text); border-color: var(--muted); }
.board-tab.active,
.board-tab.active:hover { color: var(--accent); background: var(--accent-light); border-color: transparent; }

.board-panel[hidden] { display: none; }

.board-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--surface);
    text-align: left;
}
.board-item:last-child { margin-bottom: 0; }
.vote-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 10px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    background: var(--surface);
}
.vote-pill.voted { background: var(--accent-light); border-color: transparent; }
.vote-pill svg { display: block; margin-bottom: 2px; }
.vote-pill .count { font-size: 1.05rem; }
.item-main { flex: 1; min-width: 0; }
.item-main h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.item-main p { font-size: 0.9rem; color: var(--secondary); margin: 0; }
.chip {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-top: 10px;
}
.chip-planned { background: rgba(26, 26, 26, 0.06); color: var(--secondary); }
.chip-progress { background: var(--accent-light); color: var(--accent); }
.chip-shipped { background: rgba(58, 143, 92, 0.12); color: var(--success); }

/* Status-Tags im Board (an der echten App orientiert: Pill mit Punkt) */
.tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.74rem; font-weight: 600;
    padding: 3px 9px; border-radius: var(--radius-full);
    flex-shrink: 0; white-space: nowrap;
}
.tag::before { content: ""; width: 6px; height: 6px; border-radius: var(--radius-full); background: currentColor; }
.tag-indigo { background: var(--accent-light); color: var(--accent); }
.tag-grey { background: rgba(26, 26, 26, 0.06); color: var(--secondary); }
.tag-green { background: rgba(58, 143, 92, 0.12); color: var(--success); }

/* Release-Karten (Roadmap & Changelog) */
.release-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 12px;
    background: var(--surface);
    text-align: left;
}
.release-card:last-child { margin-bottom: 0; }
.release-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px 16px; flex-wrap: wrap; }
.release-head-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.release-version { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.release-title { color: var(--secondary); font-size: 0.92rem; }
.release-date { color: var(--muted); font-size: 0.82rem; flex-shrink: 0; }
.release-desc { color: var(--secondary); font-size: 0.9rem; margin-top: 8px; }
.release-items { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); display: grid; gap: 9px; }
.release-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.release-item-icon { flex-shrink: 0; font-size: 0.95rem; line-height: 1; }
.release-item-title { flex: 1; min-width: 0; }
.release-group { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.release-group-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 8px; }
.release-group .release-item { padding: 2px 0; }

/* ---------- Feature trio ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 46px; height: 46px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--secondary); font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps { background: var(--bg-alt); }
.grid-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}
.step-num {
    width: 34px; height: 34px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--secondary); font-size: 0.96rem; }

/* ---------- Deep dives ---------- */
.deepdive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}
.deepdive:last-child { margin-bottom: 0; }
.deepdive.reverse .dd-visual { order: -1; }
.dd-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.dd-text p { color: var(--secondary); font-size: 1.05rem; margin-bottom: 18px; }
.dd-list { list-style: none; display: grid; gap: 12px; }
.dd-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; }
.dd-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.dd-cta { margin-top: 22px; margin-bottom: 0; }
.dd-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 22px;
}

/* mini visuals inside deep dives */
.rank-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border-light); }
.rank-row:last-child { border-bottom: 0; }
.rank-votes { min-width: 46px; font-weight: 700; color: var(--accent); }
.rank-bar { flex: 1; height: 8px; border-radius: var(--radius-full); background: var(--bg-alt); overflow: hidden; }
.rank-bar span { display: block; height: 100%; background: var(--accent); border-radius: var(--radius-full); }
.rank-label { font-size: 0.9rem; color: var(--secondary); min-width: 96px; }

.roadmap-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.roadmap-col h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.roadmap-card { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 0.82rem; margin-bottom: 8px; }

.report-visual { display: grid; gap: 12px; }
.report-line { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.report-thumb { width: 100%; height: 88px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--bg-alt), #E7E1D8); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.avatar { width: 26px; height: 26px; border-radius: var(--radius-full); background: var(--accent-light); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }

/* ---------- Why Roadlight ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { text-align: left; }
.why-icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-card p { color: var(--secondary); font-size: 0.93rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-alt); }
.grid-pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 22px; justify-content: center; }
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); position: relative; }
.price-badge { position: absolute; top: -12px; left: 32px; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-full); }
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-tagline { color: var(--secondary); font-size: 0.93rem; margin-bottom: 20px; }
.price-amount { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.02em; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; display: grid; gap: 11px; margin: 22px 0 26px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.price-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.price-card .btn { width: 100%; margin-top: auto; }
.price-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 22px 4px;
    font-weight: 600;
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--accent); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { color: var(--secondary); padding: 0 4px 22px; margin: 0; font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.cta-band { text-align: center; }
.cta-inner {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    box-shadow: var(--shadow-md);
}
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; margin: 14px auto 28px; max-width: 520px; }
.cta-inner .btn-primary { background: var(--accent); color: #fff; }
.cta-inner .btn-primary:hover { background: var(--accent-hover); }
/* Höhere Spezifität als .cta-inner p, damit die Notiz wirklich kleiner rendert. */
.cta-inner .cta-reassure { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 16px auto 0; max-width: none; }

/* ---------- Weitere Fähigkeiten (bricht die Zigzag-Serie) ---------- */
.capabilities .section-head { margin-bottom: 44px; }
.cap-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
.cap { text-align: center; padding: 0 8px; }
.cap-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.cap h3 { font-size: 1.08rem; margin-bottom: 8px; }
.cap p { color: var(--secondary); font-size: 0.95rem; max-width: 30ch; margin: 0 auto; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--secondary); font-size: 0.93rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.9rem; }

/* ---------- Cookie-/Speicher-Hinweis ---------- */
.cookie-banner {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    max-width: 440px;
    z-index: 60;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { font-size: 0.9rem; color: var(--secondary); line-height: 1.5; }
.cookie-text a { color: var(--accent); font-weight: 600; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-banner .btn { align-self: flex-start; }
@media (min-width: 560px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        max-width: 640px;
    }
    .cookie-banner .btn { align-self: auto; flex-shrink: 0; }
}

/* ---------- Motion: Hero-Entrance + Scroll-Reveal (reduced-motion-sicher) ---------- */
@media (prefers-reduced-motion: no-preference) {
    @keyframes rl-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
    .hero h1 { animation: rl-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
    .hero .subline { animation: rl-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
    .hero-ctas { animation: rl-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both; }
    .hero .trust { animation: rl-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both; }

    /* .reveal versteckt sich nur, wenn JS die Einblendung übernimmt (reveal-ready). */
    .reveal-ready .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .grid-3, .grid-steps, .grid-4, .cap-row { grid-template-columns: 1fr; }
    .grid-4 { gap: 16px; }
    .cap-row { gap: 28px; max-width: 420px; }
    .deepdive { grid-template-columns: 1fr; gap: 28px; margin-bottom: 52px; }
    .deepdive.reverse .dd-visual { order: 0; }
    .grid-pricing { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav.open .nav-menu {
        display: flex;
        position: absolute;
        top: 64px; left: 0; right: 0;
        flex-direction: column;
        gap: 16px;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 18px;
    }
    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .nav.open .nav-links a { padding: 10px 0; }
    .nav.open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .nav.open .nav-actions .btn { width: 100%; }
    section { padding: 60px 0; }
    .roadmap-cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-ctas .btn, .price-card .btn { width: 100%; }
    .hero-ctas { flex-direction: column; }
    .board-body { padding: 14px; }
    .board-item { flex-wrap: nowrap; }
}

/* ---------- Reduzierte Bewegung ---------- */
/* Respektiert die System-Einstellung "Bewegung reduzieren": kein Smooth-
   Scroll, keine Transitions/Transforms. Rein optional, ändert das Design
   für Nutzer ohne Bewegungsempfindlichkeit nicht. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .btn-primary:hover, .feature-card:hover { transform: none; }
}

/* ---------- Vergleich / Alternative zu Canny ---------- */
.compare { background: var(--bg-alt); }
.compare-table-wrap {
    max-width: 920px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
    padding: 15px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}
.compare-table thead th {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}
.compare-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .is-roadlight { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.compare-table thead .is-roadlight { color: var(--accent); }
.compare-yes { color: var(--success); font-weight: 600; }
.compare-no { color: var(--muted); }
.compare-note {
    max-width: 920px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ---------- Early-Access-Band ---------- */
.ea-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 0 auto;
    padding: 22px 28px;
    text-align: center;
    background: var(--accent-light);
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: var(--radius-lg);
}
.ea-badge {
    flex: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}
.ea-inner p { max-width: 620px; margin: 0; color: var(--text); font-size: 0.98rem; }
