:root {
    --aqua: #A8EDF0;
    --aqua2: #8FE6EA;
    --teal: #3FC4D2;
    --teal-d: #2BA9BB;
    --yellow: #FFC928;
    --yellow-d: #F2B400;
    --black: #1B1B1B;
    --body: #565656;
    --faint: #8E8E8E;
    --white: #fff;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1140px;
    --hard: 6px 6px 0 var(--black);
    --hard-sm: 4px 4px 0 var(--black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--white);
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--yellow);
    color: var(--black)
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px
}

h1,
h2,
h3 {
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
    line-height: 1.12;
    color: var(--black)
}

/* buttons: yellow block, black border, arrow */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    font-size: 14.5px;
    letter-spacing: .02em;
    padding: 14px 22px;
    border: 2.5px solid var(--black);
    background: var(--yellow);
    color: var(--black);
    cursor: pointer;
    transition: .2s var(--ease);
    box-shadow: var(--hard-sm)
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--black)
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black)
}

.btn .arr {
    font-size: 18px;
    line-height: 1
}

.btn.white {
    background: var(--white)
}

.btn.blk {
    background: var(--black);
    color: var(--white)
}

/* squiggles */
.sq {
    position: absolute;
    pointer-events: none
}

/* ===== TOP BAR ===== */
.topzone {
    background: #2BA9BB;
    padding: 18px 0 0;
    position: relative;
    z-index: 2;
}

/* nav card */
.navcard {
    background: var(--white);
    border: 2.5px solid var(--black);
    box-shadow: var(--hard-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    flex-wrap: wrap
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px
}

.brand img{
    display: block;
    width: 48px;
    height: auto;
}
.brand .bt{
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
}
.brand .bt .a{
    color: #2BA9BB;
    font-weight: 800;
}
.navcta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px
}

.navcta .alt {
    font-size: 12px;
    color: var(--body)
}

.navcta .alt a {
    font-weight: 800;
    text-decoration: underline
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: #2BA9BB;
    padding: 80px 0 150px;
    overflow: hidden;
    color: #fff;
}

.hero .deco {
    position: absolute;
    border: 2.5px solid rgba(255, 255, 255, .7);
    border-radius: 50%
}

.hero .dots {
    position: absolute;
    width: 120px;
    height: 90px;
    background-image: radial-gradient(rgba(255, 255, 255, .8) 2.2px, transparent 2.6px);
    background-size: 18px 18px
}

.hero-in {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto
}

.hero .photo {
    width: min(300px, 70%);
    aspect-ratio: 4/5;
    margin: 0 auto 26px;
    border: 4px solid var(--white);
    box-shadow: 0 30px 60px -22px rgba(0, 40, 50, .45);
    overflow: hidden;
    transform: rotate(-2deg)
}

.hero .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.8vw, 52px);
    text-shadow: 0 3px 0 rgba(0, 60, 70, .25)
}

.hero .sub {
    margin-top: 14px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, .95);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-num {
    display: flex;
    flex-direction: column;
    text-align: left
}

.hero-num small {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
}

.hero-num a {
    font-weight: 900;
    font-size: 22px;
    color: #fff
}

.hero-num a:hover {
    color: var(--yellow)
}

/* floating match cards */
.match {
    position: absolute;
    z-index: 2;
    width: 172px;
    background: transparent;
    animation: floaty 6s ease-in-out infinite
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.match .face {
    background: var(--white);
    border: 2.5px solid var(--black);
    padding: 13px 14px 10px;
    color: var(--black)
}

.match .face .nm {
    font-weight: 800;
    font-size: 14px
}

.match .face .nb {
    font-size: 11px;
    color: var(--body);
    font-weight: 600
}

.match .face .wv {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    margin-top: 8px
}

.match .face .wv i {
    width: 4px;
    border-radius: 3px;
    background: var(--teal-d);
    animation: wv 1.4s ease-in-out infinite
}

.match .tagm {
    display: inline-block;
    background: var(--white);
    border: 2.5px solid var(--black);
    border-top: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800
}

.match .tagm b {
    color: var(--teal-d);
    font-weight: 900
}

.match.m1 {
    top: 90px;
    left: 4%
}

.match.m2 {
    top: 60px;
    right: 5%;
    animation-delay: -2s
}

.match.m3 {
    bottom: 210px;
    left: 7%;
    animation-delay: -3.5s
}

.match.m4 {
    bottom: 230px;
    right: 6%;
    animation-delay: -1.2s
}

@media(max-width:860px) {
    .match {
        display: none
    }
}

/* ===== STEP CARDS ===== */
.steps {
    position: relative;
    z-index: 3;
    margin-top: -90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.step {
    background: var(--white);
    border: 2.5px solid var(--black);
    box-shadow: var(--hard-sm);
    padding: 42px 22px 24px;
    text-align: center;
    position: relative
}

.step .n {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border: 2.5px solid var(--black);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 22px
}

.step h4 {
    font-weight: 800;
    font-size: 16px;
    text-transform: none;
    display: inline-block;
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 3px
}

.step p {
    font-size: 13.5px;
    color: var(--body);
    margin-top: 10px;
    font-weight: 500
}

/* 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
}

/* ===== EXPLORE SPLIT ===== */
.sec {
    padding: 96px 0
}

.explore {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.explore h2 {
    font-size: clamp(26px, 3.8vw, 40px);
    max-width: 480px
}

.explore .tag {
    font-weight: 800;
    font-size: 15px;
    margin-top: 14px
}

.flist {
    margin-top: 30px;
    display: grid;
    gap: 24px
}

.fitem {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.fitem .ic {
    width: 52px;
    height: 52px;
    background: var(--yellow);
    border: 2.5px solid var(--black);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.fitem .ic svg {
    width: 24px;
    height: 24px
}

.fitem h4 {
    font-weight: 800;
    font-size: 16px
}

.fitem p {
    font-size: 14px;
    color: var(--body);
    margin-top: 4px;
    font-weight: 500;
    max-width: 420px
}

/* visual: tilted yellow block + photo */
.expvis {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 420px;
    align-items: center
}

.expvis .yblock {
    position: absolute;
    width: 340px;
    height: 500px;
    background: var(--yellow);
    border: 3px solid var(--black);
    transform: rotate(10deg)
}

.expvis .pcut {
    position: relative;
    width: 370px;
    aspect-ratio: 4/5;
    border: 3px solid var(--black);
    overflow: hidden;
    transform: rotate(-5deg);
    box-shadow: var(--hard)
}

.expvis .pcut img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.expvis .bub {
    position: absolute;
    top: 45%;
    right: 6%;
    background: var(--white);
    border: 2.5px solid var(--black);
    padding: 10px 15px;
    font-weight: 800;
    font-size: 13px;
    transform: rotate(5deg);
    box-shadow: var(--hard-sm);
    animation: floaty 5s ease-in-out infinite
}

/* ===== HER / HIM ===== */
.duoband {
    background: var(--aqua);
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.duoband h2 {
    text-align: center;
    font-size: clamp(26px, 3.8vw, 40px)
}

.duoband .bsub {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 44px
}

.dcard {
    background: var(--white);
    border: 2.5px solid var(--black);
    box-shadow: var(--hard);
    padding: 34px 30px;
    position: relative
}

.dcard .tab {
    position: absolute;
    top: -16px;
    left: 26px;
    background: var(--yellow);
    border: 2.5px solid var(--black);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px
}

.dcard h3 {
    font-size: 21px;
    text-transform: none;
    margin: 8px 0 16px
}

.dcard ul {
    list-style: none
}

.dcard li {
    padding: 8px 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--body);
    display: flex;
    gap: 11px
}

.dcard li b {
    color: var(--black)
}

.dcard li::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--yellow);
    border: 2px solid var(--black);
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B1B1B' stroke-width='4'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat
}

.dcard .btn {
    margin-top: 20px
}

/* neighborhoods */
.hoods {
    margin-top: 46px;
    text-align: center
}

.hoods .hlbl {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px
}

.hchip {
    background: var(--white);
    border: 2.5px solid var(--black);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    transition: .2s
}

.hchip:hover {
    background: var(--yellow);
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--black)
}

/* ===== FAST PANEL ===== */
.fast {
    background: var(--aqua);
    padding: 90px 0
}

.fast h2 {
    text-align: center;
    font-size: clamp(26px, 3.8vw, 40px)
}

.fast .fsub {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px
}

.fgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px
}

.fbox {
    background: var(--white);
    border: 2.5px solid var(--black);
    padding: 22px 22px
}

.fbox .fl {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--body)
}

.fbox .fv {
    font-weight: 800;
    font-size: 16.5px;
    margin-top: 6px
}

.fast .fcta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px
}

.fast .alt {
    text-align: center;
    margin-top: 16px;
    font-size: 13.5px;
    font-weight: 600
}

.fast .alt a {
    font-weight: 800;
    text-decoration: underline
}

/* ===== SAFETY ===== */
.safe {
    padding-top: 80px!important;
}

.safe-in {
    background: var(--yellow);
    border: 3px solid var(--black);
    box-shadow: var(--hard);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
}

.s18 {
    width: 78px;
    height: 78px;
    background: var(--black);
    color: var(--yellow);
    display: grid;
    place-items: center;
    text-align: center;
    flex-shrink: 0;
    border: 3px solid var(--black)
}

.s18 b {
    font-weight: 900;
    font-size: 24px;
    display: block;
    line-height: 1
}

.s18 small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.safe-in .scols {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 300px
}

.safe-in h4 {
    font-weight: 800;
    font-size: 14.5px;
    text-transform: none
}

.safe-in p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(27, 27, 27, .75);
    margin-top: 3px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 780px;
    margin: 0 auto
}

.fi {
    border: 2.5px solid var(--black);
    background: var(--white);
    margin-bottom: 14px;
    box-shadow: var(--hard-sm);
    transition: .2s
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    font-weight: 800;
    font-size: 16px;
    color: var(--black)
}

.fq .pm {
    width: 34px;
    height: 34px;
    background: var(--yellow);
    border: 2.5px solid var(--black);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.fi.open .pm {
    transform: rotate(45deg);
    background: var(--black);
    color: var(--yellow)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--body)
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 0 110px;
    text-align: center;
    background: var(--white)
}

.f-mk {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border: 3px solid var(--black);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    box-shadow: var(--hard-sm)
}

.f-mk svg {
    width: 32px;
    height: 32px
}

footer .fname {
    font-weight: 900;
    font-size: 22px
}

.flinks {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700
}

.flinks a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.flinks a:hover {
    background: var(--yellow)
}

footer .fcall {
    margin-top: 22px;
    font-weight: 800;
    font-size: 17px
}

footer .fcall a:hover {
    background: var(--yellow)
}

footer .fmail {
    margin-top: 6px;
    font-weight: 700;
    font-size: 15px
}

footer .faddr {
    margin-top: 14px;
    font-size: 13px;
    color: var(--body);
    font-weight: 500
}

footer .fage {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-weight: 800;
    font-size: 13.5px;
    background: var(--white);
    border: 2.5px solid var(--black);
    padding: 9px 18px;
    box-shadow: var(--hard-sm)
}

footer .fage span {
    width: 28px;
    height: 28px;
    background: var(--yellow);
    border: 2px solid var(--black);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900
}

footer .fcopy {
    margin-top: 24px;
    font-size: 12.5px;
    color: var(--faint);
    font-weight: 500
}

/* 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: var(--white);
    border: 2.5px solid var(--black);
    box-shadow: var(--hard-sm);
    padding: 10px 11px 10px 16px;
    transform: translateY(150%);
    transition: transform .45s var(--ease)
}

.callbar.show {
    transform: none
}

.callbar .txt {
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.25
}

.callbar .txt small {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--body)
}

.callbar .btn {
    padding: 11px 16px;
    font-size: 13px
}

@media(max-width:940px) {
    .banner {
        grid-template-columns: repeat(3, 1fr)
    }

    .banner .cut:nth-child(n+4) {
        display: none
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 34px 18px
    }

    .explore,
    .duo {
        grid-template-columns: 1fr
    }

    .fgrid {
        grid-template-columns: 1fr
    }

    .safe-in .scols {
        grid-template-columns: 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:580px) {
    .wrap {
        padding: 0 18px
    }

    .sec {
        padding: 64px 0
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .banner {
        grid-template-columns: 1fr 1fr
    }


    .navcta {
        align-items: center
    }

    .hero {
        padding: 60px 0 140px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}