:root {
    --g1: #FF9F45;
    --g2: #F0529C;
    --g3: #8A4DFF;
    --grad: linear-gradient(95deg, var(--g1), var(--g2) 52%, var(--g3));
    --grad-soft: linear-gradient(95deg, #FFF1E4, #FCE6F1 52%, #F0E9FF);
    --ink: #1B1726;
    --body: #6B6577;
    --faint: #A39EB0;
    --bg: #fff;
    --soft: #FAF8FC;
    --line: #EFEAF4;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    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(--g2);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

h1,
h2,
h3,
h4 {
    font-family: "Nunito", sans-serif;
    color: var(--ink);
    letter-spacing: -.01em;
    line-height: 1.12
}

.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .04em;
    padding: 16px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: .3s var(--ease)
}

.btn-grad {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 16px 34px -10px rgba(232, 75, 160, .5)
}

.btn-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -12px rgba(232, 75, 160, .6)
}

.btn-line {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn-line:hover {
    border-color: var(--g2);
    color: var(--g2)
}

.btn-white {
    background: #fff;
    color: var(--ink)
}

.btn-white:hover {
    transform: translateY(-2px)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s 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: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo img{
    display: block;
    width: 58px;
    height: auto;
}

.logo span {
    display: block
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--ink)
}

.nav-call {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 70px 0 90px
}

.hero-in {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 40px;
    align-items: center
}

.hero h1 {
    font-size: clamp(40px, 6vw, 74px);
    font-weight: 900
}

.hero h1 .l1 {
    display: block;
    font-weight: 500;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--ink);
    letter-spacing: -.01em
}

.hero h1 .l2 {
    display: block
}

.hero h1 .l3 {
    display: block;
    font-size: clamp(46px, 7.2vw, 88px)
}

.hero .sub {
    color: var(--body);
    font-size: 17px;
    max-width: 430px;
    margin-top: 24px
}

.hero .freebar {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--body);
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hero .freebar b {
    color: var(--g2);
    font-weight: 900
}

.hero .cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 26px
}

.hero .num {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--ink)
}

.hero .num:hover {
    color: var(--g2)
}

/* stats */
.hstats {
    display: flex;
    gap: 34px;
    margin-top: 50px;
    flex-wrap: wrap
}

.hstat {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    max-width: 215px
}

.hstat .si {
    width: 42px;
    height: 42px;
    flex-shrink: 0
}

.hstat h4 {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1
}

.hstat p {
    font-size: 12.5px;
    color: var(--body);
    margin-top: 3px;
    line-height: 1.4
}

/* hero collage */
.collage {
    position: relative;
    height: 520px
}

.bd {
    position: absolute;
    border-radius: 30px;
    z-index: 1
}

.bd.p {
    width: 230px;
    height: 300px;
    background: #B9A4F5;
    top: 0;
    left: 42%;
    transform: rotate(-7deg)
}

.bd.o {
    width: 215px;
    height: 285px;
    background: #FFB347;
    top: 120px;
    right: 0;
    transform: rotate(8deg)
}

.bd.g {
    width: 215px;
    height: 290px;
    background: #86D96F;
    bottom: 0;
    left: 30%;
    transform: rotate(-4deg)
}

.vcard {
    position: absolute;
    z-index: 2;
    width: 215px;
    height: 240px;
    background: #fff;
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 30px 60px -26px rgba(27, 23, 38, .4);
    border: 1px solid var(--line)
}

.vcard.c1 {
    top: 18px;
    left: 34%;
    transform: rotate(-7deg)
}

.vcard.c2 {
    top: 138px;
    right: 6px;
    transform: rotate(7deg)
}

.vcard.c3 {
    bottom: 18px;
    left: 22%;
    transform: rotate(-4deg)
}


.vcard img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ===== section scaffold ===== */
.sec {
    padding: 100px 0
}

.sec-head {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center
}

.sec-head h2 {
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 900;
    margin-top: 16px
}

.sec-head p {
    color: var(--body);
    margin-top: 16px;
    font-size: 17px
}

/* ===== CONTRAST (app trap vs our way) ===== */
.vs {
    background: var(--soft)
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 940px;
    margin: 0 auto
}

.vs-card {
    border-radius: 28px;
    padding: 40px 38px
}

.vs-card.bad {
    background: #fff;
    border: 1px solid var(--line)
}

.vs-card.good {
    background: #fff;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--grad);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 30px 60px -34px rgba(138, 77, 255, .4)
}

.vs-card .tag {
    font-family: "Nunito";
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.vs-card.bad .tag {
    color: var(--faint)
}

.vs-card.good .tag {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.vs-card h3 {
    font-size: 25px;
    font-weight: 900;
    margin-top: 8px
}

.vs-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 16px
}

.vs-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: 15.5px;
    color: var(--body);
    font-weight: 600
}

.vs-list .ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    margin-top: 1px
}

.vs-card.bad .ic {
    background: #F1ECF6;
    color: var(--faint)
}

.vs-card.good .ic {
    background: var(--grad);
    color: #fff
}

.vs-card.good .vs-list li {
    color: var(--ink)
}

.vs-list .ic svg {
    width: 13px;
    height: 13px
}

/* ===== HOW ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: s
}

.step {
    position: relative;
    padding-top: 18px
}

.step .n {
    font-family: "Nunito";
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .9
}

.step h4 {
    font-size: 19px;
    font-weight: 900;
    margin-top: 12px
}

.step p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 8px
}

.step::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--line)
}

.step:last-child::after {
    display: none
}

/* ===== BALTIMORE ===== */
.balt {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.balt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: .92
}

.balt::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .13) 1.4px, transparent 1.6px);
    background-size: 26px 26px;
    opacity: .5
}

.balt-in {
    position: relative;
    z-index: 2;
    padding: 80px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.balt h2 {
    color: #fff;
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 900
}

.balt p {
    color: rgba(255, 255, 255, .9);
    margin-top: 16px;
    max-width: 420px;
    font-size: 16.5px
}

.balt .localnum {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 18px;
    padding: 16px 26px;
    margin-top: 26px
}

.balt .localnum .ln-l {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82)
}

.balt .localnum b {
    font-family: "Nunito";
    font-size: 26px;
    font-weight: 900
}

.balt .localnum b:hover {
    color: #FFF1E4
}

.balt .toll {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .9)
}

.balt .toll a {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chips span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 100px;
    font-family: "Nunito";
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 17px;
    transition: .25s
}

.chips span:hover {
    background: #fff;
    color: var(--g2)
}

/* ===== GUIDELINES ===== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.gcard {
    text-align: center;
    padding: 24px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    transition: .3s var(--ease)
}

.gcard:hover {
    box-shadow: 0 24px 48px -34px rgba(27, 23, 38, .4)
}

.gcard .gi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 14px
}

.gcard .gi svg {
    width: 23px;
    height: 23px;
    stroke: var(--g2)
}

.gcard h4 {
    font-size: 15px;
    font-weight: 900
}

.gcard p {
    font-size: 12px;
    color: var(--body);
    margin-top: 5px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 760px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.fi.open {
    border-color: transparent;
    background-image: linear-gradient(#fff, #fff), var(--grad);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 22px 46px -34px rgba(138, 77, 255, .45)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    font-family: "Nunito";
    font-weight: 800;
    font-size: 17px;
    color: var(--ink)
}

.fq .pm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 19px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.fi.open .pm {
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 28px 26px;
    font-size: 15px;
    color: var(--body)
}

/* ===== CLOSE ===== */
.close {
    text-align: center;
    padding: 110px 28px
}

.close h2 {
    font-size: clamp(34px, 5.2vw, 64px);
    font-weight: 900
}

.close p {
    color: var(--body);
    font-size: 18px;
    max-width: 480px;
    margin: 18px auto 0
}

.close .num {
    display: block;
    font-family: "Nunito";
    font-weight: 900;
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 28px 0 22px
}

.close .num:hover {
    color: var(--g2)
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding: 20px 0 20px
}

.f-bot {
    font-size: 13.5px;
    color: var(--faint);
    text-align: center;
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Nunito";
    font-weight: 800;
    color: var(--ink)
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 900;
    color: #fff
}

/* ===== REASONS ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto
}

.rcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px 34px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: .3s var(--ease)
}

.rcard:hover {
    box-shadow: 0 30px 60px -36px rgba(27, 23, 38, .4);
    transform: translateY(-4px)
}

.rcard .ri {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--grad-soft)
}

.rcard .ri svg {
    width: 27px;
    height: 27px;
    stroke: var(--g2);
}

.rcard h4 {
    font-size: 19px;
    font-weight: 900
}

.rcard p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 6px
}

/* ===== TONIGHT (greeting snippets) ===== */
.greet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.gsnip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    transition: .3s var(--ease)
}

.gsnip:hover {
    box-shadow: 0 30px 60px -36px rgba(138, 77, 255, .35);
    transform: translateY(-4px)
}

.gsnip .top {
    display: flex;
    align-items: center;
    gap: 12px
}

.gsnip .av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Nunito";
    font-weight: 900;
    font-size: 17px;
    flex-shrink: 0
}

.gsnip .who b {
    font-family: "Nunito";
    font-weight: 900;
    font-size: 15px;
    display: block;
    line-height: 1.1
}

.gsnip .who span {
    font-size: 12px;
    color: var(--faint);
    font-weight: 600
}

.gsnip .quote {
    font-size: 15px;
    color: var(--ink);
    margin-top: 16px;
    font-style: italic
}

.gsnip .wv {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    margin-top: 16px
}

.gsnip .wv i {
    width: 4px;
    border-radius: 3px;
    background: var(--grad);
    animation: wv 1.4s ease-in-out infinite
}

.gsnip .tagil {
    display: inline-block;
    margin-top: 14px;
    font-family: "Nunito";
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--faint)
}

/* ===== TESTIMONIALS ===== */
.tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px
}

.tcard .qm {
    font-family: "Nunito";
    font-weight: 900;
    font-size: 50px;
    line-height: .7;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.tcard p {
    font-size: 15.5px;
    color: var(--ink);
    margin-top: 4px
}

.tcard .by {
    font-family: "Nunito";
    font-weight: 800;
    font-size: 13.5px;
    color: var(--body);
    margin-top: 16px
}

.til-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 28px
}

/* ===== FREE BAND ===== */
.freeband {
    margin: 0 16px;
    border-radius: 30px;
    background: var(--grad);
    color: #fff;
    padding: 46px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.freeband::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .16) 1.4px, transparent 1.6px);
    background-size: 24px 24px;
    opacity: .5
}

.freeband .fb-l {
    position: relative;
    z-index: 2
}

.freeband h3 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900
}

.freeband p {
    color: rgba(255, 255, 255, .94);
    margin-top: 8px;
    font-size: 15.5px
}

.freeband .btn {
    position: relative;
    z-index: 2
}

/* sticky mobile call bar */
.callbar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 9px 9px 22px;
    box-shadow: 0 18px 40px -16px rgba(27, 23, 38, .4)
}

.callbar .t {
    font-family: "Nunito";
    font-weight: 900;
    font-size: 13.5px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 600;
    font-size: 11px;
    color: var(--body)
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .hero-in,
    .balt-in {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .collage {
        height: 460px;
        max-width: 420px;
        margin: 0 auto
    }

    .vs-grid,
    .reasons-grid,
    .greet-grid,
    .tg {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .step::after {
        display: none
    }

    .guide-grid {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 22px
    }

    .sec {
        padding: 68px 0
    }

    .hstats {
        gap: 22px
    }

    .steps {
        grid-template-columns: 1fr
    }

    .guide-grid {
        grid-template-columns: 1fr
    }

    .balt {
        margin: 0 10px
    }

    .balt-in {
        padding: 54px 28px
    }

    .vs-card {
        padding: 32px 26px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}