/**
 * Intently — Base Foundation Styles
 */

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    min-height: 100vh;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-skip-ink: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

.intly-main { width: 100%; }
.intly-canvas { width: 100%; min-height: 100vh; position: relative; }

.intly-canvas--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: #666;
    font-size: 1.125rem;
}

.intly-article { max-width: 42rem; margin: 0 auto; padding: 3rem 1.5rem; }
.intly-article__title { font-size: 2.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.intly-article__content { font-size: 1.125rem; line-height: 1.75; }
.intly-article__content h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.intly-article__content h3 { font-size: 1.375rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.intly-article__content p { margin-bottom: 1.25rem; }
.intly-article__content ul, .intly-article__content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.intly-article__content blockquote {
    border-left: 3px solid #e0e0e0;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}
