/* lp3: sticker-shop pop.
   Saturated flat panels, thick ink outlines, hard offset shadows,
   sticker badges, marquee strip. Fredoka display, Nunito body.
   Self-contained: no Bootstrap, no shared css. */

:root {
    --white: #FFFFFF;
    --red: #FF2E00;
    --yellow: #FFC931;
    --sky: #37B0FF;
    --pink: #FF5EA0;
    --ink: #141414;
    --cream: #FFF6E8;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.display {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

/* ===== header ===== */
.lp-header { background: var(--white); border-bottom: 3px solid var(--ink); }

.lp-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.wordmark {
    font-family: 'Krona One', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    text-decoration: none;
}

.header-login {
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.header-login:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}

/* ===== hero (red panel) ===== */
.hero {
    background: var(--red);
    color: var(--white);
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: clip;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.9rem, 6.5vw, 5.5rem);
    margin: 0 0 1.25rem;
}

.hero h1 .tilt {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 14px;
    padding: 0 0.5rem;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 var(--ink);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 700;
    max-width: 30rem;
    margin: 0;
}

/* sticker cluster */
.stickers {
    position: relative;
    min-height: 380px;
}

.sticker {
    position: absolute;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ink);
}

.sticker.round {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 1.35rem;
    transform: rotate(-8deg);
    top: 0;
    left: 8%;
}

.sticker.pill {
    border-radius: 999px;
    background: var(--sky);
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.8rem 1.6rem;
    transform: rotate(5deg);
    top: 130px;
    right: 4%;
}

.sticker.tag {
    border-radius: 18px;
    background: var(--pink);
    color: var(--white);
    font-size: 1.15rem;
    padding: 1rem 1.4rem;
    transform: rotate(-4deg);
    bottom: 40px;
    left: 20%;
}

.sticker.mini {
    border-radius: 12px;
    background: var(--white);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transform: rotate(7deg);
    bottom: 0;
    right: 14%;
}

/* ===== claim component (price tag) ===== */
.claim {
    margin-top: 2.5rem;
    max-width: 480px;
    background: var(--white);
    color: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 8px 8px 0 var(--ink);
}

.claim-label {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.claim-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.claim-field {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    border: 3px solid var(--ink);
    border-radius: 14px;
    background: var(--cream);
    overflow: hidden;
}

.claim-prefix {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.65rem 0.7rem;
    white-space: nowrap;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.claim input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.65rem 0.75rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    caret-color: var(--red);
}

.claim input:focus { outline: none; }

.claim-field:focus-within { background: var(--white); border-color: var(--sky); }

.claim button {
    background: var(--yellow);
    color: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 14px;
    padding: 0.65rem 1.4rem;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    white-space: nowrap;
}

.claim button:hover,
.claim button:focus-visible {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}

.claim button:disabled { opacity: 0.55; cursor: wait; }

.claim-preview {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0.85rem 0 0;
    color: rgba(20, 20, 20, 0.55);
    overflow-wrap: anywhere;
}

.claim.is-live .claim-preview [data-claim-name] { color: var(--red); }

.claim-error {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--red);
}

.claim-trust {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(20, 20, 20, 0.6);
}

/* ===== marquee ===== */
.marquee {
    background: var(--ink);
    color: var(--white);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
    padding: 0.85rem 0;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 28s linear infinite;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: lowercase;
    white-space: nowrap;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ===== sections ===== */
.section { padding: 4.5rem 0; }

.section-head { margin-bottom: 3rem; text-align: center; }

.section-head h2 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    margin: 0;
}

.section-sub {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-weight: 700;
}

/* ===== profile demo (white panel) ===== */
.phone-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 26px;
    box-shadow: 10px 10px 0 var(--ink);
    padding: 2rem;
    position: relative;
}

.phone-card .badge-free {
    position: absolute;
    top: -22px;
    right: -14px;
    background: var(--pink);
    color: var(--white);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid var(--ink);
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    transform: rotate(6deg);
    box-shadow: 4px 4px 0 var(--ink);
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--white);
    border: 3px solid var(--ink);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-handle { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.15rem; margin: 0; }
.profile-handle .host { color: rgba(20, 20, 20, 0.5); }
.profile-stats { margin: 0.1rem 0 0; font-size: 0.85rem; font-weight: 700; color: rgba(20, 20, 20, 0.6); }

.finds-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.find {
    background: var(--white);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.find-src {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(20, 20, 20, 0.55);
}

.find-src img { width: 16px; height: 16px; }

.find-title { font-weight: 800; font-size: 0.95rem; line-height: 1.35; margin: 0; }

.find-note {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--red);
    margin: 0;
}

.profile-caption {
    text-align: center;
    margin: 1.5rem 0 0;
    font-weight: 800;
}

/* ===== how (yellow panel) ===== */
.how-panel { background: var(--yellow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-card {
    border: 3px solid var(--ink);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    box-shadow: 6px 6px 0 var(--ink);
    min-width: 0;
}

.step-card.c1 { background: var(--white); }
.step-card.c2 { background: var(--sky); color: var(--white); }
.step-card.c3 { background: var(--pink); color: var(--white); }
.step-card.c4 { background: var(--red); color: var(--white); }

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.step-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
}

.step-card p { font-size: 0.92rem; font-weight: 700; margin: 0; }

/* ===== sources (white panel) ===== */
.sources-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.source-mark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.source:hover .source-mark { transform: translateY(-4px) rotate(-4deg); }

.source-mark img { width: 32px; height: 32px; object-fit: contain; }
.source-mark.wide img { width: 44px; height: 18px; }

.source span { font-size: 0.9rem; font-weight: 800; }

.fallbacks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.25rem;
    justify-content: center;
}

.fallback-chip {
    border: 3px solid var(--ink);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-size: 0.92rem;
    font-weight: 800;
    background: var(--cream);
}

.sources-note {
    text-align: center;
    font-weight: 700;
    max-width: 38rem;
    margin: 1.75rem auto 0;
    color: rgba(20, 20, 20, 0.65);
}

/* ===== public payoff (sky panel) ===== */
.public-panel {
    background: var(--sky);
    color: var(--white);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
}

.public-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.public-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 1.25rem; }
.public-copy p { font-weight: 700; margin: 0 0 1rem; max-width: 30rem; }

.toggle-card {
    background: var(--white);
    color: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(1.5deg);
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px dotted rgba(20, 20, 20, 0.2);
    margin-top: 1.1rem;
    padding-top: 1.1rem;
}

.toggle-row .state {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
}

.switch {
    width: 56px;
    height: 30px;
    border-radius: 15px;
    background: var(--red);
    border: 3px solid var(--ink);
    position: relative;
    flex-shrink: 0;
}

.switch::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--ink);
}

/* ===== final claim (pink panel) ===== */
.claim-final {
    background: var(--pink);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.claim-final h2 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); margin: 0 0 0.75rem; }
.claim-final .section-sub { font-weight: 700; }

.claim-final .claim {
    margin: 2.5rem auto 0;
    text-align: left;
}

.fine-print {
    margin: 2.25rem 0 0;
    font-size: 0.82rem;
    font-weight: 700;
}

/* ===== footer ===== */
.lp-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); }

.lp-footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-footer a { color: rgba(255, 255, 255, 0.75); margin-right: 1.25rem; }
.lp-footer a:hover { color: var(--yellow); }

/* ===== responsive ===== */
@media (max-width: 991px) {
    .hero { padding: 3rem 0 3.5rem; }
    .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
    .stickers { min-height: 300px; max-width: 480px; margin: 0 auto; width: 100%; }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .public-grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
    .finds-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section { padding: 3.5rem 0; }
}

@media (max-width: 575px) {
    .steps { grid-template-columns: minmax(0, 1fr); }
    .claim-row { flex-direction: column; }
    .claim button { width: 100%; }
    .phone-card { padding: 1.25rem; }
    .finds-grid { grid-template-columns: minmax(0, 1fr); }
    .sticker.round { width: 120px; height: 120px; font-size: 1.1rem; }
    .stickers { min-height: 340px; }
}
