/* ════════════════════════════════════════
   SKETCHED DE STIJL — MOBILE STYLESHEET
   Only loaded on screens ≤ 768px via
   <link media="screen and (max-width: 768px)">
   ════════════════════════════════════════ */

* { box-sizing: border-box; }

body {
    background: #fdfbf7; color: #111; font-family: 'Comic Sans MS', cursive, sans-serif;
    background-image: repeating-linear-gradient(transparent, transparent 19px, #e8e8e8 20px);
    margin: 0; padding: 0;
}

/* ── Container — tighter padding on mobile ── */
.sk-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-x: hidden;
}

/* ── Navigation — stacked on mobile ── */
.sk-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-bottom: 4px solid #111;
    border-radius: 2px 255px 3px 25px/255px 5px 225px 3px;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.sk-logo {
    font-size: 2rem;
    font-weight: 900;
    background: #d32f2f;
    color: #fff;
    padding: 0.5rem 1rem;
    border: 4px solid #111;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    transform: rotate(-2deg);
    display: inline-block;
    text-decoration: none;
}

.sk-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1rem;
    align-items: center;
}

.sk-link { color: #111; text-decoration: none; border-bottom: 3px solid transparent; transition: 0.2s; }
.sk-link:hover { transform: translateY(-2px); }
.sk-link.red-border { border-color: #d32f2f; border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; }
.sk-link.yellow-border { border-color: #fbc02d; border-radius: 15px 225px 15px 255px/255px 15px 225px 15px; }

/* ── General Elements — smaller padding ── */
.sk-box {
    border: 4px solid #111;
    border-radius: 255px 20px 225px 30px/30px 225px 15px 255px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    transition: 0.2s;
    position: relative;
}
.sk-box:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 rgba(0,0,0,0.3); }

/* ── Typography — scaled down ── */
.sk-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
    margin-top: 0;
}
.sk-subtitle { font-size: 1.1rem; line-height: 1.5; margin-bottom: 1.5rem; }

.sk-btn {
    background: #1976d2; color: #fff; font-size: 1.1rem; font-weight: bold; padding: 0.85rem 1.5rem;
    border: 4px solid #111; border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
    cursor: pointer; text-transform: uppercase; transition: 0.2s; box-shadow: 5px 5px 0 #111;
    display: inline-block; text-decoration: none;
    width: 100%;
    text-align: center;
}
.sk-btn.secondary {
    background: #fff; color: #111;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    margin-left: 0 !important;
    margin-top: 0.75rem;
}
.sk-btn:hover { background: #fbc02d; color: #111; transform: translate(-3px, -3px); box-shadow: 8px 8px 0 #111; }

.sk-highlight-yellow {
    background: #fbc02d; padding: 0 8px; border: 3px solid #111;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    display: inline-block; transform: rotate(-2deg);
}

/* ── Hero — single column ── */
.sk-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.sk-hero-art {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    min-height: 300px;
    border: 5px solid #111;
    border-radius: 30px 225px 15px 255px/255px 15px 225px 30px;
    padding: 0.75rem;
    background: #fff;
}
.sk-hero-art .sk-red { background: #d32f2f; grid-row: span 2; border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; border: 3px solid #111; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sk-hero-art .sk-yellow { background: #fbc02d; border-radius: 15px 225px 15px 255px/255px 15px 225px 15px; border: 3px solid #111; display: flex; align-items: center; justify-content: center; position: relative; z-index: 10; overflow: hidden; }
.sk-hero-art .sk-blue { background: #1976d2; border-radius: 255px 255px 15px 15px/15px 15px 225px 225px; border: 3px solid #111; display: flex; align-items: center; justify-content: center; }
.sk-hero-art img { max-width: 100px; }

/* ── Social Proof — wrapped ── */
.sk-proof-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border: 4px solid #111;
    border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    gap: 1.5rem;
}
.sk-proof-stat { text-align: center; flex: 1 1 40%; }
.sk-proof-value { font-size: 2.5rem; font-weight: 900; color: #1976d2; text-shadow: 2px 2px 0 #111; }
.sk-proof-label { font-size: 1rem; font-weight: bold; text-transform: uppercase; }

/* ── Features — single column ── */
.sk-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sk-feature { text-align: center; display: flex; flex-direction: column; align-items: center; }
.sk-feature-icon { width: 70px; height: 70px; margin: 0 auto 1rem auto; border: 4px solid #111; display: flex; align-items: center; justify-content: center; font-size: 2rem; border-radius: 50% 40% 60% 30% / 30% 60% 40% 50%; }
.sk-feature:nth-child(3n+1) .sk-feature-icon { background: #fbc02d; transform: rotate(5deg); }
.sk-feature:nth-child(3n+2) .sk-feature-icon { background: #d32f2f; color: #fff; transform: rotate(-5deg); border-radius: 30% 60% 40% 50% / 50% 40% 60% 30%; }
.sk-feature:nth-child(3n+3) .sk-feature-icon { background: #1976d2; color: #fff; transform: rotate(8deg); border-radius: 60% 30% 50% 40% / 40% 50% 30% 60%; }

/* Section titles inside features */
#features .sk-title,
#fun .sk-title,
#audiences .sk-title {
    font-size: 2rem;
}
#features .sk-subtitle,
#fun .sk-subtitle {
    font-size: 1rem;
}

/* ── Splits — single column ── */
.sk-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sk-split-card {
    background: #fff;
    padding: 1.5rem;
    border: 4px solid #111;
    border-radius: 255px 20px 225px 30px/30px 225px 15px 255px;
    box-shadow: 5px 5px 0 #111;
}
.sk-split-card h3 { font-size: 1.8rem; }
.sk-split-card p { font-size: 1.05rem; }

/* ── Gamification Elements ── */
.sk-swatches { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.sk-swatch { width: 28px; height: 28px; border-radius: 50%; border: 3px solid #111; }
.sk-streak-demo { display: flex; gap: 5px; justify-content: center; margin-top: 1rem; }
.sk-streak-day { width: 32px; height: 32px; border: 3px solid #111; border-radius: 50% 40% 60% 30% / 30% 60% 40% 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; background: #fff; }
.sk-streak-day.lit { background: #fbc02d; box-shadow: 3px 3px 0 #111; transform: rotate(-10deg); }

/* ── Footer — stacked ── */
.sk-footer {
    border-top: 4px solid #111;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: 255px 5px 225px 3px/2px 255px 3px 25px;
    font-weight: bold;
}
.sk-footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.sk-footer-links a { color: #111; text-decoration: none; }

/* ── Auth Modal — mobile-friendly ── */
.marketing-modal-card {
    width: 95% !important;
    max-width: 100% !important;
    margin: 1rem !important;
    height: auto !important;
    max-height: 95vh !important;
    overflow-y: auto !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
}
