/* ==========================================================================
   SWS Accounting — algemene stijlen
   ========================================================================== */

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

html,
body {
    height: 100%;
}

/* Typografie — SF Pro per globale richtlijn */
body {
    font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #1d1d1f;
    background: #f5f5f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: #0071e3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Landing / coming-soon
   ========================================================================== */

.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(ellipse at top, #ffffff 0%, #f5f5f7 60%);
}

.landing__inner {
    text-align: center;
    max-width: 560px;
}

.landing__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.landing__subtitle {
    font-size: 21px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.landing__contact {
    font-size: 15px;
    color: #6e6e73;
}

@media (max-width: 600px) {
    .landing__title {
        font-size: 40px;
    }

    .landing__subtitle {
        font-size: 18px;
    }
}
