/* ===========================================================
   Luvu Creator Program — design system
   Reuses luvu-web palette + chunky-CTA + Cherry-Bomb vibe.
   =========================================================== */

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

:root {
    --luvu-blue: #88D8E7;
    --luvu-rose: #F53173;
    --luvu-fire: #F7A337;
    --luvu-dark-blue: #2A3A52;
    --luvu-gray: #D7D8EE;
    --luvu-orange: #FD8E23;
    --luvu-yellow-orange: #FFBA38;
    --luvu-cream: #FFF6E5;
    --luvu-mint: #B5EAD7;
    --luvu-violet: #B388FF;

    --shadow-chunky: 4px 4px 0 var(--luvu-dark-blue);
    --shadow-chunky-lg: 6px 6px 0 var(--luvu-dark-blue);
    --shadow-chunky-sm: 3px 3px 0 var(--luvu-dark-blue);
    --radius: 22px;
    --radius-sm: 14px;
    --border: 3px solid var(--luvu-dark-blue);
}

html, body { overflow-x: hidden; }
body {
    font-family: 'Nunito', sans-serif;
    background: var(--luvu-blue);
    color: var(--luvu-dark-blue);
    line-height: 1.5;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.30) 0, transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(245,49,115,0.15) 0, transparent 35%);
    background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 640px; margin: 0 auto; padding: 0 20px; }

/* ========================== HEADER ========================== */
.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--luvu-dark-blue);
}
.app-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.app-logo {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 28px;
    color: var(--luvu-dark-blue);
    text-decoration: none;
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
}
.app-logo .logo-tag {
    display: inline-block;
    margin-left: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: white;
    background: var(--luvu-rose);
    padding: 4px 8px;
    border-radius: 6px;
    border: 2px solid var(--luvu-dark-blue);
    transform: rotate(3deg);
    vertical-align: middle;
}
.header-nav { display: flex; align-items: center; gap: 14px; }
.header-nav a {
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    color: var(--luvu-dark-blue);
}
.header-nav a:hover { color: var(--luvu-rose); }

.lang-picker {
    display: inline-flex;
    gap: 2px;
    background: var(--luvu-cream);
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 999px;
    padding: 2px;
}
.lang-btn {
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 4px 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.6px;
    color: var(--luvu-dark-blue);
    cursor: pointer;
    line-height: 1;
}
.lang-btn.active {
    background: var(--luvu-rose);
    color: white;
}
.lang-btn:hover:not(.active) {
    color: var(--luvu-rose);
}
.header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid var(--luvu-dark-blue);
    object-fit: cover;
    background: var(--luvu-gray);
}

/* ========================== TYPOGRAPHY ========================== */
.kicker {
    display: inline-block;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--luvu-dark-blue);
    background: white;
    padding: 7px 14px;
    border-radius: 999px;
    border: 2px solid var(--luvu-dark-blue);
    box-shadow: var(--shadow-chunky-sm);
    transform: rotate(-2deg);
    margin-bottom: 20px;
}
.kicker.kicker-rose { background: var(--luvu-rose); color: white; }
.kicker.kicker-fire { background: var(--luvu-fire); color: white; }

.display {
    font-family: 'Cherry Bomb One', cursive;
    font-weight: 400;
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.92;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.display .word { display: inline-block; line-height: 0.92; width: fit-content; text-shadow: 4px 4px 0 rgba(42,58,82,0.18); }
.display .word-1 { color: var(--luvu-dark-blue); transform: rotate(-2deg); animation: wobble1 4.5s ease-in-out infinite; }
.display .word-2 { color: var(--luvu-rose); transform: rotate(1.5deg) translateX(12px); animation: wobble2 5s ease-in-out infinite; }
.display .word-3 { color: var(--luvu-fire); transform: rotate(-1deg) translateX(28px); animation: wobble3 4s ease-in-out infinite; }

@keyframes wobble1 { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(0.5deg); } }
@keyframes wobble2 { 0%,100% { transform: rotate(1.5deg) translateX(12px); } 50% { transform: rotate(3deg) translateX(12px); } }
@keyframes wobble3 { 0%,100% { transform: rotate(-1deg) translateX(28px); } 50% { transform: rotate(-3deg) translateX(28px); } }

h1, h2, h3 { color: var(--luvu-dark-blue); }
h2.section-title {
    font-family: 'Cherry Bomb One', cursive;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 16px;
    transform: rotate(-1deg);
    display: inline-block;
}
.subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 28px;
    max-width: 540px;
}

/* ========================== BUTTONS ========================== */
.btn-primary {
    display: inline-block;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transform: rotate(-2deg);
    -webkit-tap-highlight-color: transparent;
}
.btn-primary-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding: 20px 34px;
    background: var(--luvu-rose);
    color: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 22px;
    font-family: 'Cherry Bomb One', cursive;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    z-index: 2;
    transition: transform 0.12s ease;
    white-space: nowrap;
}
.btn-primary::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -7px;
    height: calc(100% + 7px);
    background: var(--luvu-dark-blue);
    border-radius: 22px;
    z-index: 1;
}
.btn-primary:hover .btn-primary-content { transform: translateY(3px); }
.btn-primary:active .btn-primary-content { transform: translateY(6px); }
.btn-primary[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn-primary[disabled]:hover .btn-primary-content { transform: none; }

.btn-primary.btn-secondary .btn-primary-content { background: white; color: var(--luvu-dark-blue); }
.btn-primary.btn-fire .btn-primary-content { background: var(--luvu-fire); color: white; }
.btn-primary.btn-mint .btn-primary-content { background: var(--luvu-mint); color: var(--luvu-dark-blue); }
.btn-primary.btn-small .btn-primary-content { padding: 14px 22px; font-size: 18px; border-radius: 16px; }
.btn-primary.btn-small::before { border-radius: 16px; bottom: -5px; height: calc(100% + 5px); }

/* Pill / link button */
.btn-link {
    background: none;
    border: none;
    color: var(--luvu-dark-blue);
    font-weight: 800;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 6px 8px;
}
.btn-link:hover { color: var(--luvu-rose); }

/* Google sign-in button */
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    padding: 16px 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--luvu-dark-blue);
    cursor: pointer;
    box-shadow: var(--shadow-chunky);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    text-decoration: none;
    position: relative;
}
.btn-google:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--luvu-dark-blue); }
.btn-google:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--luvu-dark-blue); }
.btn-google svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ========================== CARDS ========================== */
.card {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-chunky);
    position: relative;
}
.card.card-rose { background: var(--luvu-rose); color: white; }
.card.card-fire { background: var(--luvu-fire); color: white; }
.card.card-mint { background: var(--luvu-mint); }
.card.card-cream { background: var(--luvu-cream); }
.card.card-violet { background: var(--luvu-violet); color: white; }

.card-stamp {
    position: absolute;
    top: -14px;
    right: 18px;
    background: var(--luvu-fire);
    color: white;
    font-family: 'Cherry Bomb One', cursive;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 2px solid var(--luvu-dark-blue);
    transform: rotate(6deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-chunky-sm);
    z-index: 2;
}

/* ========================== STAT CARDS (gamified) ========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
@media (min-width: 720px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .stats-grid.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: var(--shadow-chunky-sm);
    position: relative;
    overflow: hidden;
}
.stat-card .stat-label {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--luvu-dark-blue);
    opacity: 0.7;
    margin-bottom: 6px;
}
.stat-card .stat-value {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 42px;
    line-height: 1;
    color: var(--luvu-dark-blue);
}
.stat-card .stat-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    opacity: 0.18;
    color: var(--luvu-dark-blue);
    transform: rotate(-8deg);
}
.stat-card.tone-rose .stat-value { color: var(--luvu-rose); }
.stat-card.tone-fire .stat-value { color: var(--luvu-fire); }
.stat-card.tone-blue .stat-value { color: var(--luvu-dark-blue); }
.stat-card.tone-mint { background: var(--luvu-mint); }

/* ========================== REWARD ROADS ========================== */
.road {
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-chunky);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}
.road.road-approved { background: linear-gradient(135deg, var(--luvu-mint) 0%, #DEFFEC 100%); }
.road.road-xp { background: var(--luvu-dark-blue); color: white; }
.road .road-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}
.road .road-eyebrow {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.75;
}
.road.road-xp .road-eyebrow { color: rgba(255,255,255,0.85); }
.road .road-title {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 30px;
    line-height: 1;
    color: var(--luvu-dark-blue);
}
.road.road-xp .road-title { color: white; }
.road .road-value {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 22px;
    color: var(--luvu-rose);
    line-height: 1;
}
.road.road-xp .road-value { color: var(--luvu-fire); }

/* Timeline of checkpoints — flush to road card edges (negative margin) */
.road-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 18px -22px 12px;
    overflow-x: auto;
    padding: 0 22px 8px;
    scrollbar-width: thin;
    scroll-padding-inline: 22px;
}
.road-timeline::-webkit-scrollbar { height: 6px; }
.road-timeline::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 999px; }

.checkpoint {
    flex: 1 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 6px;
    /* button reset — checkpoints are <button> for clickability */
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}
.checkpoint:hover .cp-dot { transform: scale(1.06); }
.checkpoint:focus-visible .cp-dot { outline: 3px solid var(--luvu-rose); outline-offset: 2px; }
.checkpoint:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 70%;
    width: 60%;
    height: 4px;
    background: rgba(42, 58, 82, 0.18);
    border-radius: 999px;
    z-index: 0;
}
.road.road-xp .checkpoint:not(:last-child)::after { background: rgba(255,255,255,0.18); }
.checkpoint.done:not(:last-child)::after {
    background: var(--luvu-fire);
}
.cp-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--shadow-chunky-sm);
    margin-bottom: 8px;
    z-index: 1;
    position: relative;
    transition: transform 0.18s ease;
}
.checkpoint.next .cp-dot {
    background: var(--luvu-rose);
    color: white;
    transform: scale(1.08);
    animation: cpPulse 2s ease-in-out infinite;
}
.checkpoint.done .cp-dot {
    background: var(--luvu-fire);
    color: white;
}
.checkpoint.locked .cp-dot {
    /* Keep locked icons fully visible — they're a preview of what's coming.
       Soft cream background pops on both the mint (Starter) and dark-blue
       (Long Grind) road backgrounds. */
    background: var(--luvu-cream);
    color: var(--luvu-dark-blue);
}
.road.road-xp .checkpoint.locked .cp-dot {
    background: rgba(255, 255, 255, 0.95);
}
@keyframes cpPulse {
    0%, 100% { transform: scale(1.08); box-shadow: 3px 3px 0 var(--luvu-dark-blue); }
    50%      { transform: scale(1.16); box-shadow: 4px 4px 0 var(--luvu-dark-blue); }
}
.cp-at {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 18px;
    color: var(--luvu-dark-blue);
    line-height: 1;
    margin-bottom: 4px;
}
.road.road-xp .cp-at { color: white; }
.cp-reward {
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
    color: var(--luvu-dark-blue);
    max-width: 130px;
}
.road.road-xp .cp-reward { color: rgba(255,255,255,0.92); }
.checkpoint.locked .cp-reward, .checkpoint.locked .cp-at { opacity: 0.75; }
.checkpoint.next .cp-reward { color: var(--luvu-rose); }
.road.road-xp .checkpoint.next .cp-reward { color: var(--luvu-fire); }

/* Progress bar to next checkpoint */
.road-progress {
    height: 18px;
    background: rgba(42,58,82,0.12);
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--luvu-dark-blue);
    position: relative;
    margin-top: 14px;
}
.road.road-xp .road-progress { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.road-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--luvu-fire), var(--luvu-rose));
    border-radius: 999px;
    transition: width 0.7s cubic-bezier(.5,1.7,.5,1);
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.15);
}
.road-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-weight: 800;
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
}
.road.road-xp .road-meta { color: rgba(255,255,255,0.92); }
.road-meta .meta-reward {
    color: var(--luvu-rose);
    text-align: right;
}
.road.road-xp .road-meta .meta-reward { color: var(--luvu-fire); }

/* "Coming up" preview list (XP road) */
.road-coming {
    margin-top: 16px;
    border-top: 2px dashed rgba(255,255,255,0.25);
    padding-top: 14px;
}
.road:not(.road-xp) .road-coming { border-top-color: rgba(42,58,82,0.18); }
.road-coming-title {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 8px;
}
.road-coming-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.coming-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}
.coming-item .ci-emoji { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
.coming-item .ci-at {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 14px;
    flex-shrink: 0;
    min-width: 64px;
    color: var(--luvu-fire);
}
.road:not(.road-xp) .coming-item .ci-at { color: var(--luvu-rose); }
.coming-item .ci-reward { opacity: 0.92; }

.road-complete-banner {
    background: var(--luvu-fire);
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    border: 2px solid var(--luvu-dark-blue);
    font-family: 'Cherry Bomb One', cursive;
    font-size: 18px;
    text-align: center;
    margin-top: 14px;
    transform: rotate(-1deg);
}

/* "Quest complete" placeholder for the hidden Approved road */
.road-locked {
    background: var(--luvu-cream);
    color: var(--luvu-dark-blue);
    padding: 14px;
    border-radius: 14px;
    border: 2px dashed var(--luvu-dark-blue);
    text-align: center;
    font-weight: 800;
    margin-bottom: 18px;
}

/* ========================== BADGES ========================== */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (min-width: 720px) { .badges-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.badge {
    aspect-ratio: 1;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    text-align: center;
    box-shadow: var(--shadow-chunky-sm);
    position: relative;
    transition: transform 0.18s ease;
}
.badge:hover { transform: translateY(-3px) rotate(-2deg); }
.badge .badge-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--luvu-dark-blue);
}
.badge .badge-emoji [data-lucide] { width: 30px; height: 30px; stroke-width: 2.2; }
.badge.unlocked.tone-rose .badge-emoji,
.badge.unlocked.tone-fire .badge-emoji { color: white; }
.badge .badge-name {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 11px;
    line-height: 1.05;
    color: var(--luvu-dark-blue);
}
.badge.locked { background: var(--luvu-gray); opacity: 0.55; filter: grayscale(0.6); }
.badge.locked .badge-emoji { opacity: 0.5; }
.badge.locked::after {
    content: '🔒';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 14px;
}
.badge.unlocked.tone-rose { background: var(--luvu-rose); color: white; }
.badge.unlocked.tone-rose .badge-name { color: white; }
.badge.unlocked.tone-fire { background: var(--luvu-fire); color: white; }
.badge.unlocked.tone-fire .badge-name { color: white; }
.badge.unlocked.tone-mint { background: var(--luvu-mint); }

/* ========================== FORMS ========================== */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--luvu-dark-blue);
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--luvu-dark-blue);
    box-shadow: var(--shadow-chunky-sm);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--luvu-dark-blue);
}
.form-textarea { min-height: 90px; resize: vertical; }
.form-help {
    font-size: 13px;
    font-weight: 700;
    color: var(--luvu-dark-blue);
    opacity: 0.75;
    margin-top: 6px;
}
.form-input-prefix {
    position: relative;
}
.form-input-prefix .prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: var(--luvu-dark-blue);
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
}
.form-input-prefix input { padding-left: 32px; }

/* ========================== ONBOARDING ========================== */
.onb-shell {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.onb-card {
    width: 100%;
    max-width: 500px;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    box-shadow: var(--shadow-chunky-lg);
    padding: 28px 24px;
}
.onb-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.onb-step {
    flex: 1;
    height: 8px;
    background: var(--luvu-gray);
    border-radius: 999px;
    border: 2px solid var(--luvu-dark-blue);
}
.onb-step.active { background: var(--luvu-rose); }
.onb-step.done { background: var(--luvu-fire); }
.onb-eyebrow {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}
.onb-title {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--luvu-dark-blue);
    transform: rotate(-1deg);
    display: inline-block;
}
.onb-blurb {
    font-weight: 700;
    font-size: 15px;
    color: var(--luvu-dark-blue);
    opacity: 0.85;
    margin-bottom: 22px;
}
.onb-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    gap: 16px;
}

/* ========================== HERO LANDING ========================== */
.hero-landing {
    padding: 64px 0 48px;
    text-align: left;
}
.hero-landing .hero-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 880px) {
    .hero-landing { padding: 96px 0 80px; }
    .hero-landing .hero-row { grid-template-columns: 1.2fr 1fr; gap: 48px; }
}
.hero-landing .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.hero-marshmallow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.hero-marshmallow .blob {
    width: clamp(200px, 40vw, 320px);
    height: clamp(200px, 40vw, 320px);
    background: white;
    border: 4px solid var(--luvu-dark-blue);
    border-radius: 50%;
    box-shadow: 8px 8px 0 var(--luvu-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
    animation: wobble1 6s ease-in-out infinite;
}

/* Floating stickers around hero */
.sticker {
    position: absolute;
    z-index: 5;
    font-family: 'Cherry Bomb One', cursive;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border: 2.5px solid var(--luvu-dark-blue);
    box-shadow: var(--shadow-chunky-sm);
}
.sticker-rose { background: var(--luvu-rose); color: white; }
.sticker-fire { background: var(--luvu-fire); color: white; }
.sticker-mint { background: var(--luvu-mint); color: var(--luvu-dark-blue); }
.sticker-cream { background: var(--luvu-cream); color: var(--luvu-dark-blue); }

.hero-marshmallow .sticker-1 { top: 6%; left: 4%; transform: rotate(-10deg); animation: stickerWobble 6s ease-in-out infinite; }
.hero-marshmallow .sticker-2 { bottom: 12%; right: 2%; transform: rotate(8deg); animation: stickerWobble 7s ease-in-out infinite reverse; }
.hero-marshmallow .sticker-3 { top: 50%; right: -2%; transform: rotate(-4deg); animation: stickerWobble 5s ease-in-out infinite; }
@keyframes stickerWobble {
    0%, 100% { transform: rotate(var(--rot, -10deg)) translateY(0); }
    50% { transform: rotate(var(--rot, -10deg)) translateY(-6px); }
}

/* ========================== HOW IT WORKS ========================== */
.how-it-works {
    padding: 48px 0 80px;
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.step-card {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-chunky);
    position: relative;
}
.step-card .step-num {
    position: absolute;
    top: -18px;
    left: -10px;
    background: var(--luvu-rose);
    color: white;
    font-family: 'Cherry Bomb One', cursive;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--luvu-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    box-shadow: var(--shadow-chunky-sm);
}
.step-card h3 {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--luvu-dark-blue);
}
.step-card p {
    font-weight: 700;
    font-size: 15px;
    color: var(--luvu-dark-blue);
    opacity: 0.85;
}

/* ========================== DASHBOARD ========================== */
.dash-shell { padding: 32px 0 80px; }
.dash-greeting {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.dash-greeting .hello {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 4px;
}
.dash-greeting .name {
    font-family: 'Cherry Bomb One', cursive;
    font-size: clamp(38px, 7vw, 56px);
    line-height: 1;
    color: var(--luvu-dark-blue);
    transform: rotate(-2deg);
    display: inline-block;
}
.dash-section {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-chunky);
    margin-bottom: 24px;
}
.dash-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.dash-section-head h2 {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 26px;
    line-height: 1;
    color: var(--luvu-dark-blue);
}

/* Submission row */
.sub-list { display: flex; flex-direction: column; gap: 12px; }
.sub-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: var(--luvu-cream);
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 14px;
}
.sub-row .sub-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sub-row .sub-platform {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--luvu-dark-blue);
    opacity: 0.7;
}
.sub-row .sub-url {
    font-weight: 700;
    font-size: 14px;
    color: var(--luvu-dark-blue);
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sub-row .sub-status {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 2px solid var(--luvu-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.sub-status.status-pending { background: var(--luvu-cream); color: var(--luvu-dark-blue); }
.sub-status.status-full { background: var(--luvu-mint); color: var(--luvu-dark-blue); }
.sub-status.status-half { background: var(--luvu-fire); color: white; }
.sub-status.status-zero { background: var(--luvu-gray); color: var(--luvu-dark-blue); }

.empty-state {
    text-align: center;
    padding: 36px 20px;
    color: var(--luvu-dark-blue);
    opacity: 0.85;
}
.empty-state .empty-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    background: var(--luvu-cream);
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    box-shadow: var(--shadow-chunky-sm);
}
.empty-state .empty-emoji [data-lucide] { width: 32px; height: 32px; }
.empty-state p { font-weight: 700; font-size: 15px; }

/* ========================== ADMIN ========================== */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.admin-tab {
    background: white;
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 13px;
    color: var(--luvu-dark-blue);
    cursor: pointer;
    box-shadow: var(--shadow-chunky-sm);
}
.admin-tab.active { background: var(--luvu-rose); color: white; }

.review-card {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-chunky);
    margin-bottom: 18px;
    display: grid;
    gap: 18px;
}
@media (min-width: 720px) { .review-card { grid-template-columns: 320px 1fr; } }
.review-embed {
    background: var(--luvu-gray);
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 480px;
}
.review-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.review-meta { font-size: 14px; }
.review-meta dt { font-weight: 800; opacity: 0.7; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 10px; }
.review-meta dd { font-weight: 700; font-size: 15px; }
.review-meta a { color: var(--luvu-rose); font-weight: 800; }
.review-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.credit-btn {
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 14px;
    padding: 10px 18px;
    font-family: 'Cherry Bomb One', cursive;
    font-size: 18px;
    color: var(--luvu-dark-blue);
    cursor: pointer;
    box-shadow: var(--shadow-chunky-sm);
}
.credit-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--luvu-dark-blue); }
.credit-btn.credit-1 { background: var(--luvu-mint); }
.credit-btn.credit-half { background: var(--luvu-fire); color: white; }
.credit-btn.credit-0 { background: var(--luvu-gray); }

.review-form-row { margin-bottom: 12px; }
.review-form-row .form-input { padding: 10px 14px; font-size: 15px; }
.review-flags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.flag-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    padding: 6px 10px;
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 12px;
    background: var(--luvu-cream);
}
.flag-toggle input { width: 18px; height: 18px; accent-color: var(--luvu-rose); }

.review-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.review-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--luvu-cream);
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.review-tag.tag-effort { background: var(--luvu-mint); }
.review-tag.tag-main { background: var(--luvu-fire); color: white; }

/* ========================== ASSETS / STICKERS ========================== */
.sticker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}
.sticker-card {
    position: relative;
    background: var(--luvu-cream);
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    padding: 14px 10px 12px;
    box-shadow: var(--shadow-chunky-sm);
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-family: 'Nunito', sans-serif;
}
.sticker-card:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 5px 5px 0 var(--luvu-dark-blue); }
.sticker-card:active { transform: translateY(-1px) rotate(-0.5deg); }
.sticker-thumb {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--luvu-dark-blue);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
}
.sticker-thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }
.sticker-name {
    font-weight: 800;
    font-size: 12px;
    color: var(--luvu-dark-blue);
    letter-spacing: 0.3px;
}
.sticker-dl {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--luvu-rose);
    color: white;
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-chunky-sm);
    text-decoration: none;
    transition: transform 0.18s ease;
}
.sticker-dl:hover { transform: scale(1.1) rotate(-8deg); }

/* Reward detail modal — clicked from a road checkpoint */
.reward-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.reward-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 58, 82, 0.55);
    backdrop-filter: blur(4px);
}
.reward-modal-card {
    position: relative;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    box-shadow: var(--shadow-chunky-lg);
    max-width: 380px;
    width: 100%;
    padding: 28px 24px 22px;
    text-align: center;
}
.reward-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--luvu-dark-blue);
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-chunky-sm);
    cursor: pointer;
}
.reward-modal-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-chunky);
    color: var(--luvu-dark-blue);
}
.reward-modal-icon [data-lucide] { width: 44px; height: 44px; stroke-width: 2.4; }
.reward-modal-icon.tone-done { background: var(--luvu-fire); color: white; }
.reward-modal-icon.tone-next { background: var(--luvu-rose); color: white; animation: cpPulse 2s ease-in-out infinite; }
.reward-modal-icon.tone-locked { background: var(--luvu-gray); opacity: 0.85; }

.reward-modal-at {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 32px;
    color: var(--luvu-rose);
    line-height: 1;
    margin-bottom: 4px;
}
.reward-modal-title {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 22px;
    color: var(--luvu-dark-blue);
    line-height: 1.05;
    margin-bottom: 10px;
}
.reward-modal-desc {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.45;
    color: var(--luvu-dark-blue);
    opacity: 0.92;
    margin-bottom: 18px;
}
.reward-modal-status {
    display: inline-block;
    font-family: 'Cherry Bomb One', cursive;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid var(--luvu-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-chunky-sm);
}
.reward-modal-status.status-done { background: var(--luvu-mint); color: var(--luvu-dark-blue); }
.reward-modal-status.status-next { background: var(--luvu-rose); color: white; }
.reward-modal-status.status-locked { background: var(--luvu-cream); color: var(--luvu-dark-blue); }

/* Sticker viewer modal */
.sticker-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sticker-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 58, 82, 0.55);
    backdrop-filter: blur(4px);
}
.sticker-modal-card {
    position: relative;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 22px;
    box-shadow: var(--shadow-chunky-lg);
    max-width: 460px;
    width: 100%;
    padding: 22px;
}
.sticker-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--luvu-dark-blue);
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-chunky-sm);
    cursor: pointer;
}
.sticker-modal-img-wrap {
    background: var(--luvu-cream);
    border: 2px solid var(--luvu-dark-blue);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    aspect-ratio: 1;
    overflow: hidden;
}
.sticker-modal-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sticker-modal-info h3 {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 26px;
    color: var(--luvu-dark-blue);
    line-height: 1;
    margin-bottom: 4px;
}
.sticker-modal-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

/* ========================== CHAT ========================== */
.chat-shell {
    padding: 32px 0 80px;
}
.chat-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px - 60px);
    min-height: 480px;
}
.chat-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}
.chat-eyebrow {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.chat-title {
    font-family: 'Cherry Bomb One', cursive;
    font-size: clamp(34px, 6vw, 48px);
    line-height: 1;
    color: var(--luvu-dark-blue);
    transform: rotate(-2deg);
    display: inline-block;
}
.chat-status {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.6px;
    color: var(--luvu-dark-blue);
    opacity: 0.7;
}
.chat-window {
    flex: 1 1 auto;
    overflow-y: auto;
    background: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: var(--radius);
    box-shadow: var(--shadow-chunky);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: thin;
}
.chat-window::-webkit-scrollbar { width: 6px; }
.chat-window::-webkit-scrollbar-thumb { background: rgba(42,58,82,0.18); border-radius: 999px; }

.chat-empty {
    margin: auto;
    text-align: center;
    padding: 30px 20px;
}
.chat-day {
    text-align: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.55;
    margin: 12px 0 4px;
}

.chat-bubble {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 18px;
    border: 2px solid var(--luvu-dark-blue);
    box-shadow: var(--shadow-chunky-sm);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
.bubble-user {
    background: var(--luvu-rose);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}
.bubble-team {
    background: var(--luvu-cream);
    color: var(--luvu-dark-blue);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}
.bubble-author {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
}
.bubble-text { white-space: pre-wrap; }
.bubble-time {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.7;
    margin-top: 4px;
    text-align: right;
}

.chat-input-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 14px;
}
.chat-input.form-textarea {
    flex: 1 1 auto;
    min-height: 48px;
    max-height: 140px;
    resize: none;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.4;
}
.chat-send {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--luvu-rose);
    color: white;
    border: 3px solid var(--luvu-dark-blue);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-chunky-sm);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.chat-send:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--luvu-dark-blue); }
.chat-send:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--luvu-dark-blue); }
.chat-send[disabled] { opacity: 0.6; cursor: not-allowed; }
.chat-help { margin-top: 8px; text-align: center; }

/* Header chat icon + red dot */
.header-chat-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--luvu-dark-blue);
    text-decoration: none;
    transition: transform 0.18s ease;
}
.header-chat-link:hover { transform: rotate(-8deg) scale(1.05); color: var(--luvu-rose); }
.header-chat-link [data-lucide] { width: 22px; height: 22px; stroke-width: 2.4; }
.header-chat-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background: var(--luvu-rose);
    border: 2px solid white;
    border-radius: 50%;
    animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
}

/* ========================== FLOATING ACTION BUTTON ========================== */
.fab-submit {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--luvu-rose);
    color: white;
    border: 3px solid var(--luvu-dark-blue);
    box-shadow: 6px 6px 0 var(--luvu-dark-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 900;
    transition: transform 0.18s cubic-bezier(.4, 1.6, .5, 1), box-shadow 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    animation: fabBounce 4s ease-in-out infinite;
}
.fab-submit [data-lucide], .fab-submit svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}
.fab-submit:hover {
    transform: translate(-2px, -2px) rotate(-12deg);
    box-shadow: 8px 8px 0 var(--luvu-dark-blue);
    animation-play-state: paused;
}
.fab-submit:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--luvu-dark-blue);
}
@keyframes fabBounce {
    0%, 92%, 100% { transform: translate(0, 0) rotate(0deg); }
    94%           { transform: translate(0, -6px) rotate(-6deg); }
    96%           { transform: translate(0, 0) rotate(4deg); }
    98%           { transform: translate(0, -3px) rotate(-2deg); }
}
@media (max-width: 720px) {
    .fab-submit { width: 56px; height: 56px; bottom: 18px; right: 18px; box-shadow: 5px 5px 0 var(--luvu-dark-blue); }
    .fab-submit [data-lucide], .fab-submit svg { width: 28px; height: 28px; }
}

/* ========================== TOAST ========================== */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--luvu-dark-blue);
    color: white;
    padding: 14px 22px;
    border-radius: 14px;
    border: 3px solid var(--luvu-dark-blue);
    box-shadow: var(--shadow-chunky);
    font-weight: 800;
    font-size: 14px;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(.5, 1.7, .5, 1);
    pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.tone-rose { background: var(--luvu-rose); }
.toast.tone-fire { background: var(--luvu-fire); }
.toast.tone-mint { background: var(--luvu-mint); color: var(--luvu-dark-blue); }

/* ========================== FOOTER ========================== */
.app-footer {
    border-top: 3px solid var(--luvu-dark-blue);
    background: var(--luvu-dark-blue);
    color: white;
    padding: 32px 0;
    margin-top: 48px;
}
.app-footer .footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.app-footer a { color: white; font-weight: 800; text-decoration: none; }
.app-footer a:hover { color: var(--luvu-fire); }
.app-footer .footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.app-footer p { opacity: 0.8; font-size: 13px; }

/* ========================== UTILS ========================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* ========================== ICONS (Lucide) ========================== */
[data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
    flex-shrink: 0;
    vertical-align: middle;
}
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 44px; height: 44px; }
.icon-2xl { width: 64px; height: 64px; }
.icon-stroke-thin { stroke-width: 1.8; }
.icon-stroke-thick { stroke-width: 2.8; }

/* Mascot SVG — flat illustrated marshmallow */
.mascot {
    width: clamp(220px, 42vw, 360px);
    height: auto;
    transform: rotate(-3deg);
    animation: wobble1 6s ease-in-out infinite;
}

/* ========================== RESPONSIVE TWEAKS ========================== */
@media (max-width: 720px) {
    .display { font-size: clamp(48px, 13vw, 84px); }
    .display .word-2 { transform: rotate(1.5deg) translateX(8px); }
    .display .word-3 { transform: rotate(-1deg) translateX(20px); }
    .subtitle { font-size: 17px; }
    .btn-primary-content { font-size: 20px; padding: 18px 28px; }
    .onb-card { padding: 22px 18px; }
    .onb-title { font-size: 30px; }
}
