/* Prototyp 3 — Basis (Draftr-Nachbau, Schrift wie Original: Inter) */

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

:root {
    /* Gemeinsame Seitenbreite — Logo/Login, Mockups, Logo-Band */
    --content-max: 1320px;
    --content-padding: clamp(24px, 4vw, 64px);
    --header-bg: #fff;
    /* Gradion-Wortmarke (Original-SVG gradion_mountain_b_fixed 1.svg) */
    --brand-wordmark: #5a4dcc;
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Inter Display', 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a2e;
    background: #fafafa;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Landing: Hover ohne leichtes Anheben (Schatten bleibt in den Komponenten-CSS) */
.landing-page .site-header__cta:hover,
.landing-page .hero-cta:hover,
.landing-page .integrations-cta:hover,
.landing-page .pricing-card__cta--dark:hover,
.landing-page .pricing-card__cta--accent:hover,
.landing-page .final-cta__button:hover {
    transform: none;
}
