:root {
    --yellow: #FFC400;
    --pink: #F7A8DF;
    --coral: #F26B4E;
    --teal: #27AE96;
    --green: #7BD66A;
    --purple: #9B7DF0;
    --ink: #141414;
    --white: #fff;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--yellow);
    background-image: linear-gradient(rgba(255, 255, 255, .32) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .32) 1px, transparent 1px);
    background-size: 34px 34px;
    color: var(--ink);
    font-family: "Space Mono", monospace;
    font-size: 15.5px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--ink);
    color: var(--yellow)
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

h1,
h2,
h3,
h4 {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.01em
}

/* sticker / box helpers */
.box {
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink)
}

.box-sm {
    border: 2.5px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink)
}

.stk {
    position: absolute;
    z-index: 5;
    pointer-events: none
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 15px 28px;
    background: var(--yellow);
    color: var(--ink);
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
    transition: .15s var(--ease)
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink)
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink)
}

.btn.white {
    background: #fff
}

.btn.coral {
    background: var(--coral);
    color: #fff
}

.btn.pink {
    background: var(--pink)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .08s
}

[data-d="2"] {
    transition-delay: .16s
}

[data-d="3"] {
    transition-delay: .24s
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ink);
    border-bottom: 3px solid var(--ink)
}

.nav-in {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.logo img {
    display: block;
    width: 40px;
    height: auto
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-r .lk {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 8px 12px
}

.nav-r .lk:hover {
    color: var(--yellow)
}

.nav-call {
    background: var(--coral);
    color: #fff;
    border: 2.5px solid #fff;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 46px 0 70px;
    overflow: hidden;
    border-bottom: 3px solid var(--ink)
}

.pill {
    display: block;
    width: max-content;
    max-width: 92%;
    margin: 0 auto 30px;
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 100px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 14.5px;
    text-align: center
}

.hero-art {
    position: relative;
    max-width: 760px;
    margin: 0 auto
}

.stripes {
    position: absolute;
    top: 50%;
    left: -50vw;
    right: -50vw;
    transform: translateY(-50%);
    z-index: 0
}

.stripes .s {
    height: 13px;
    margin: 7px 0
}

.stripes .s.c {
    background: var(--coral)
}

.stripes .s.t {
    background: var(--teal)
}

.stripes .s.y {
    background: #fff
}

.frame {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
    border-radius: 14px;
    padding: 18px;
    margin: 0 auto;
    max-width: 520px
}
.frame img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.scene {
    width: 100%;
    height: auto;
    display: block
}

.hero h1 {
    text-align: center;
    font-size: clamp(30px, 5.4vw, 52px);
    margin-top: 42px
}

.hero h1 .hl {
    background: var(--pink);
    padding: 0 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone
}

.hero .sub {
    text-align: center;
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 15.5px
}

.hero .cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero .num {
    font-weight: 700;
    font-size: 19px;
    border-bottom: 3px solid var(--ink)
}

.hero .freenote {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px
}

.hero .freenote b {
    background: var(--yellow);
    padding: 1px 6px;
    border: 2px solid var(--ink)
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: 13px 0;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink)
}

.mq-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    animation: scroll 26s linear infinite
}

.mq-track span {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .06em;
    padding-right: 14px
}

.mq-track .dot {
    color: var(--yellow);
    padding-right: 14px
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== full color blocks ===== */
.block {
    position: relative;
    border-bottom: 3px solid var(--ink);
    overflow: hidden
}

.block.pink {
    background: var(--pink)
}

.block.coral {
    background: var(--coral);
    color: #fff
}

.block.teal {
    background: var(--teal);
    color: #fff
}

.block.white {
    background: #fff
}

.block-in {
    position: relative;
    z-index: 3;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 74px 24px
}

/* pink intro */
.intro {
    text-align: center
}

.intro h2 {
    font-size: clamp(26px, 4.2vw, 40px)
}

.intro p {
    max-width: 560px;
    margin: 18px auto 0;
    font-size: 15.5px
}

/* ===== BENEFITS SPLIT ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-l {
    background: var(--yellow);
    background-image: linear-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .06) 1px, transparent 1px);
    background-size: 30px 30px;
    border-right: 3px solid var(--ink);
    padding: 56px 44px;
    display: grid;
    place-items: center;
    position: relative
}

.split-r {
    background: #fff;
    padding: 56px 50px
}

.browser {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 330px;
    transform: rotate(-2deg)
}

.browser .bar {
    background: #fff;
    border-bottom: 2.5px solid var(--ink);
    padding: 9px 12px;
    display: flex;
    gap: 6px
}

.browser .bar i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: block
}

.browser .bar i.r {
    background: var(--coral)
}

.browser .bar i.y {
    background: var(--yellow)
}

.browser .bar i.g {
    background: var(--green)
}

.browser .scr {
    padding: 18px
}

.scr img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.split-r .eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--pink);
    border: 2px solid var(--ink);
    display: inline-block;
    padding: 3px 10px
}

.split-r h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    margin-top: 14px
}

.split-r p {
    margin-top: 14px;
    font-size: 15px
}

.arrowlist {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 14px
}

.arrowlist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 700
}

.arrowlist li .ar {
    font-weight: 700;
    color: var(--coral)
}

/* ===== HOW (step boxes) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 10px
}

.stepbox {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    padding: 26px 22px;
    position: relative
}

.stepbox .n {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    border: 3px solid var(--ink);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px
}

.stepbox:nth-child(2) .n {
    background: var(--pink)
}

.stepbox:nth-child(3) .n {
    background: var(--teal);
    color: #fff
}

.stepbox:nth-child(4) .n {
    background: var(--coral);
    color: #fff
}

.stepbox h4 {
    font-size: 16px
}

.stepbox p {
    font-size: 13.5px;
    margin-top: 8px;
    line-height: 1.6
}

/* ===== CORAL CTA ===== */
.bigcta {
    text-align: center
}

.bigcta h2 {
    color: #fff;
    font-size: clamp(26px, 4.4vw, 42px);
    line-height: 1.2
}

.bigcta .btn {
    margin-top: 24px
}

/* ===== VIBE CARDS ===== */
.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.vibe {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    padding: 24px 20px;
    text-align: center
}

.vibe .em {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--yellow)
}

.vibe:nth-child(2) .em {
    background: var(--pink)
}

.vibe:nth-child(3) .em {
    background: var(--teal)
}

.vibe:nth-child(4) .em {
    background: var(--coral)
}

.vibe .em svg {
    width: 26px;
    height: 26px
}

.vibe h4 {
    font-size: 15.5px
}

.vibe p {
    font-size: 13px;
    margin-top: 7px;
    line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.speech {
    background: var(--yellow);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    border-radius: 18px;
    padding: 24px;
    position: relative
}

.speech:nth-child(2) {
    background: #fff
}

.speech:nth-child(3) {
    background: var(--pink)
}

.speech::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 34px;
    width: 26px;
    height: 26px;
    background: inherit;
    border-right: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    transform: rotate(45deg)
}

.speech p {
    font-size: 14.5px;
    font-weight: 700
}

.speech .by {
    font-size: 12.5px;
    margin-top: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em
}

.til-note {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 32px;
    background: #fff;
    border: 2px solid var(--ink);
    display: inline-block;
    padding: 5px 12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

/* ===== BALTIMORE ===== */
.balt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center
}

.balt-grid h2 {
    color: #fff;
    font-size: clamp(26px, 3.8vw, 40px)
}

.balt-grid p {
    color: #fff;
    margin-top: 14px;
    font-size: 15px
}

.numbox {
    display: inline-block;
    background: #fff;
    color: var(--ink);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .4);
    padding: 14px 22px;
    margin-top: 22px
}

.numbox span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.numbox b {
    font-size: 23px
}

.balt-grid .toll {
    margin-top: 16px;
    font-size: 13.5px;
    color: #fff
}

.balt-grid .toll a {
    font-weight: 700;
    border-bottom: 2px solid #fff
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chips span {
    background: #fff;
    color: var(--ink);
    border: 2.5px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 13px
}

/* ===== NO BAD VIBES (rules) ===== */
.rules-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.stamp {
    border: 3px solid var(--teal);
    color: var(--teal);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transform: rotate(-5deg)
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 14px
}

.rule {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    padding: 22px 16px;
    text-align: center
}

.rule .ri {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 2.5px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow)
}

.rule:nth-child(2) .ri {
    background: var(--pink)
}

.rule:nth-child(3) .ri {
    background: var(--teal)
}

.rule:nth-child(4) .ri {
    background: var(--green)
}

.rule:nth-child(5) .ri {
    background: var(--coral)
}

.rule .ri svg {
    width: 22px;
    height: 22px
}

.rule h4 {
    font-size: 14px
}

.rule p {
    font-size: 11.5px;
    margin-top: 5px;
    line-height: 1.5
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 740px;
    margin: 0 auto
}

.fi {
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    margin-bottom: 16px
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink)
}

.fq .pm {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 2.5px solid var(--ink);
    background: var(--yellow);
    font-size: 18px;
    font-weight: 700;
    transition: .2s
}

.fi.open .pm {
    background: var(--coral);
    color: #fff
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease)
}

.fa p {
    padding: 0 24px 22px;
    font-size: 14px
}

/* ===== FOOTER ===== */
footer {
    background: var(--teal);
    color: #fff;
    border-top: 3px solid var(--ink);
    padding: 30px 0;
}



.foot-bot {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .9)
}

.foot-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #fff
}

.foot-bot .age span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ink);
    display: grid;
    place-items: center;
    font-size: 10px;
    color: var(--yellow)
}

/* mobile callbar */
.callbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    padding: 8px 8px 8px 18px
}

.callbar .t {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 400;
    font-size: 11px
}

@media(max-width:920px) {
    .nav-r .lk {
        display: none
    }

    .split {
        grid-template-columns: 1fr
    }

    .split-l {
        border-right: none;
        border-bottom: 3px solid var(--ink)
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .vibe-grid {
        grid-template-columns: 1fr 1fr
    }

    .tg {
        grid-template-columns: 1fr
    }

    .balt-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .rules-grid {
        grid-template-columns: 1fr 1fr 1fr
    }

    .foot-top {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:540px) {
    .wrap {
        padding: 0 18px
    }

    .block-in {
        padding: 54px 18px
    }

    .steps,
    .vibe-grid,
    .rules-grid,
    .foot-top {
        grid-template-columns: 1fr
    }

    .split-l,
    .split-r {
        padding: 40px 26px
    }

    .hero h1 {
        font-size: 30px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .mq-track {
        animation: none
    }
}