/* Marketpulse landing — site-specific styles.
   Tailwind utilities handle 95% of layout. This file owns:
   - custom property defaults,
   - font choices,
   - small interactive refinements.
*/

:root {
    --mp-primary: #2f55d4;
    --mp-primary-700: #244bb8;
    --mp-radius: 0.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] > summary { color: var(--mp-primary); }

::selection { background: var(--mp-primary); color: #fff; }

/* Recaptcha badge offset so it doesn't sit on top of the footer on mobile. */
.grecaptcha-badge { bottom: 80px !important; }