:root {
    --ink: #17263d;
    --ink-soft: rgba(23, 38, 61, 0.58);
    --accent: #ff8521;
    --ice: #edf4fb;
    --ice-deep: #ccdfef;
    --diamond: #1a1c26;
    --card: #ffffff;
    --radius: 20px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #d9e7f4 100%);
    min-height: 100vh;
    line-height: 1.6;
    /* subtiele sneeuw */
    background-image:
        radial-gradient(circle at 12% 18%, rgba(158, 191, 224, 0.35) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 9%, rgba(158, 191, 224, 0.3) 0 2px, transparent 3px),
        radial-gradient(circle at 35% 42%, rgba(158, 191, 224, 0.28) 0 2px, transparent 3px),
        radial-gradient(circle at 90% 55%, rgba(158, 191, 224, 0.3) 0 3px, transparent 4px),
        radial-gradient(circle at 55% 78%, rgba(158, 191, 224, 0.25) 0 2px, transparent 3px),
        radial-gradient(circle at 20% 88%, rgba(158, 191, 224, 0.3) 0 2px, transparent 3px),
        linear-gradient(180deg, #ffffff 0%, #d9e7f4 100%);
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
    padding: 20px 0;
}
header .wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: auto;
}
.brand img { width: 44px; height: 44px; border-radius: 11px; }
.brand span {
    font-size: 1.35rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--ink);
}
.brand span em { font-style: italic; color: var(--accent); }
nav { display: flex; gap: 20px; }
nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
nav a:hover, nav a.active { color: var(--accent); }

/* Hero */
.hero {
    text-align: center;
    padding: 56px 0 40px;
}
.hero img.logo { width: 120px; height: 120px; border-radius: 28px; box-shadow: 0 18px 40px rgba(23, 38, 61, 0.25); }
.hero h1 {
    margin-top: 26px;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.01em;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .tagline {
    margin: 6px auto 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--ink-soft);
    text-transform: uppercase;
}
.hero p.lead {
    max-width: 560px;
    margin: 22px auto 0;
    font-size: 1.15rem;
    color: var(--ink-soft);
}
.badge-18 {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
}
.store-note {
    display: inline-block;
    margin: 26px auto 0;
    background: var(--diamond);
    color: #fff;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(23, 38, 61, 0.3);
}
.store-note small { display: block; font-weight: 500; opacity: 0.7; font-size: 0.75rem; }

/* Secties */
section { padding: 40px 0; }
h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 18px;
}
h2 .d { color: var(--accent); }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}
.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(23, 38, 61, 0.08);
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.piste-dot {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: baseline;
}
.piste-dot.blauw { background: #3389ff; border-radius: 50%; }
.piste-dot.rood { background: #ff4050; transform: rotate(45deg); }
.piste-dot.zwart { background: var(--diamond); transform: rotate(45deg); }

/* Screenshots */
.screens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}
.screens img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(23, 38, 61, 0.16);
}

/* Tekstpagina's */
.doc {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(23, 38, 61, 0.08);
    padding: 40px;
    margin: 30px 0 50px;
}
.doc h1 { font-size: 1.9rem; font-weight: 900; margin-bottom: 4px; }
.doc .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 26px; }
.doc h2 { font-size: 1.2rem; margin: 26px 0 8px; }
.doc p, .doc li { color: #33415c; font-size: 0.98rem; }
.doc ul { padding-left: 22px; margin: 8px 0; }
.doc a { color: var(--accent); font-weight: 600; }

/* FAQ */
details {
    background: var(--card);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(23, 38, 61, 0.07);
}
details summary { font-weight: 700; cursor: pointer; }
details p { margin-top: 10px; color: var(--ink-soft); }

/* Footer met bergen */
footer {
    margin-top: 60px;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.88rem;
}
footer .mountains { display: block; width: 100%; height: auto; }
footer .inner {
    background: #fff;
    padding: 10px 0 34px;
    text-align: center;
}
footer a { color: var(--ink-soft); }
footer .disclaimer { margin-top: 6px; font-size: 0.8rem; opacity: 0.8; }

@media (max-width: 600px) {
    .doc { padding: 26px 20px; }
    nav { gap: 14px; font-size: 0.9rem; }
}
