:root {
    --coral: #FF4E63;
    --coral-d: #ED3A50;
    --coral-soft: #FFE2E6;
    --coral-tint: #FFF3F5;
    --pink: #FF8FA3;
    --ink: #2A2230;
    --body: #6E6675;
    --faint: #A8A1AE;
    --plum: #241A2E;
    --bg: #fff;
    --line: #F3E7EA;
    --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: "Inter", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    -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(--coral);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

h1,
h2,
h3,
h4 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.02em;
    color: var(--ink)
}

.cr {
    color: var(--coral)
}

.script {
    font-family: "Caveat", cursive;
    font-weight: 700
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral)
}

.ek::before,
.ek.both::after {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    opacity: .5
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: .3s var(--ease)
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(255, 78, 99, .5)
}

.btn-coral:hover {
    transform: translateY(-2px);
    background: var(--coral-d)
}

.btn-white {
    background: #fff;
    color: var(--coral);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .2)
}

.btn-white:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--coral);
    color: var(--coral)
}

/* 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
}

/* decorative hearts */
.hrt {
    position: absolute;
    color: var(--coral);
    opacity: .85;
    z-index: 1
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Hanken Grotesk";
    font-weight: 800;
    font-size: 21px
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}


.nav-links {
    display: flex;
    gap: 30px;
    font-family: "Hanken Grotesk";
    font-size: 15px;
    font-weight: 600;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--coral)
}

.nav-call {
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 100px;
    background: var(--coral);
    color: #fff;
    transition: .3s
}

.nav-call:hover {
    background: var(--coral-d)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: radial-gradient(120% 90% at 50% 0%, #FFE2E9, #FFF3F5 55%, #fff);
    overflow: hidden;
    padding: 56px 0 70px;
    text-align: center
}

.hero h1 {
    font-size: clamp(38px, 5.6vw, 64px);
    margin-top: 6px
}

.hero .script {
    font-size: clamp(26px, 3.4vw, 38px);
    color: var(--coral);
    display: block;
    transform: rotate(-3deg)
}

.hero .sub {
    color: var(--body);
    font-size: 17px;
    max-width: 560px;
    margin: 18px auto 2rem
}

.hero-stage {
    position: relative;
    max-width: 560px;
    margin: 34px auto 0;
    height: 330px
}

.bigcirc {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #FF8FA3, #FF4E63);
    display: grid;
    place-items: center;
    box-shadow: 0 40px 80px -34px rgba(255, 78, 99, .6)
}

.bigcirc .wv {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 60px
}

.bigcirc .wv i {
    width: 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.5s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 10px
    }

    50% {
        height: var(--h, 40px)
    }
}

.bigcirc .live {
    position: absolute;
    bottom: 30px;
    background: rgba(0, 0, 0, .28);
    color: #fff;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 11px;
    padding: 5px 13px;
    border-radius: 100px;
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.bigcirc .live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7BE6A8
}

.fcard {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 60px -32px rgba(40, 20, 30, .4);
    z-index: 4
}

.fcard.prof {
    left: -2%;
    top: 80px;
    width: 184px;
    padding: 14px
}

.fcard.prof .av {
    display: flex;
    align-items: center;
    gap: 10px
}

.fcard.prof .av .a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FFD08A, #FF4E63)
}

.fcard.prof .av b {
    font-family: "Hanken Grotesk";
    font-size: 13px;
    font-weight: 700
}

.fcard.prof .av small {
    display: block;
    font-size: 10.5px;
    color: var(--faint);
    font-weight: 400
}

.fcard.prof .say {
    margin-top: 12px;
    width: 100%;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 12px;
    background: var(--coral);
    color: #fff;
    border-radius: 100px;
    padding: 8px;
    text-align: center
}

.fcard.chat {
    right: -2%;
    top: 150px;
    width: 200px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.fcard.chat .a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #B7A0F2, #7B4FD8);
    flex-shrink: 0
}

.fcard.chat .ln {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background: var(--coral-soft)
}

.bub {
    position: absolute;
    font-family: "Caveat", cursive;
    font-weight: 700;
    font-size: 22px;
    color: var(--coral);
    background: #fff;
    border-radius: 16px 16px 16px 4px;
    padding: 4px 16px;
    box-shadow: 0 16px 30px -18px rgba(40, 20, 30, .4);
    z-index: 4
}

.bub.hi {
    left: 14%;
    top: 30px
}

.bub.me {
    right: 10%;
    top: 60px;
    border-radius: 16px 16px 4px 16px
}

/* quickstart */
.quickstart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 20px;
    padding: 14px;
    max-width: 760px;
    margin: 34px auto 0;
    box-shadow: 0 30px 60px -40px rgba(40, 20, 30, .4);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 5
}

.qf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 16px;
    border-right: 1px solid var(--line)
}

.qf label {
    font-size: 10px;
    font-weight: 700;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: "Hanken Grotesk"
}

.qf select {
    border: none;
    background: none;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    outline: none
}

/* ===== section scaffold ===== */
.sec {
    padding: 92px 0
}

.sec-head {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center
}

.sec-head .ek {
    justify-content: center
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 12px
}

.sec-head p {
    color: var(--body);
    margin-top: 14px
}

/* ===== ABOUT (split) ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center
}

.media-frame {
    border-radius: 24px;
    height: 400px;
    background: linear-gradient(150deg, #FFC2CE, #FF4E63);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center
}

.media-frame .wv {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 70px
}

.media-frame .wv i {
    width: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.6s ease-in-out infinite
}

.about-c .lead {
    color: var(--body);
    margin-top: 14px
}

.about-c .lead+.lead {
    margin-top: 13px
}

.trust {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap
}

.trust .ti {
    flex: 1;
    min-width: 120px;
    text-align: center
}

.trust .ti .ci {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--coral-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 10px
}

.trust .ti .ci svg {
    width: 26px;
    height: 26px;
    color: var(--coral)
}

.trust .ti b {
    font-family: "Hanken Grotesk";
    font-size: 14px;
    font-weight: 700;
    display: block
}

/* ===== STATS ===== */
.stats {
    background: var(--coral-tint)
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.stat {
    background: #fff;
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 30px 60px -48px rgba(40, 20, 30, .4)
}

.stat .si {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--coral);
    display: grid;
    place-items: center;
    margin: 0 auto 14px
}

.stat:nth-child(2) .si {
    background: #7B4FD8
}

.stat:nth-child(3) .si {
    background: #2E9BE6
}

.stat:nth-child(4) .si {
    background: #FF8FA3
}

.stat .si svg {
    width: 28px;
    height: 28px;
    color: #fff
}

.stat b {
    font-family: "Hanken Grotesk";
    font-weight: 800;
    font-size: 30px;
    display: block;
    color: var(--coral)
}

.stat span {
    font-size: 13.5px;
    color: var(--body)
}

/* ===== WHY (split) ===== */
.whypoint {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 22px
}

.whypoint .wi {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--coral-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.whypoint .wi svg {
    width: 23px;
    height: 23px;
    color: var(--coral)
}

.whypoint h4 {
    font-size: 17px
}

.whypoint p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 3px
}

/* ===== HOW (3 steps) ===== */
.how {
    background: var(--coral-tint)
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center
}

.steps2 {
    display: grid;
    gap: 8px
}

.st2 {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 24px 50px -44px rgba(40, 20, 30, .4)
}

.st2 .sc {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--coral-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative
}

.st2 .sc svg {
    width: 24px;
    height: 24px;
    color: var(--coral)
}

.st2 .sc b {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Hanken Grotesk";
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #fff
}

.st2 h4 {
    font-size: 18px
}

.st2 p {
    color: var(--body);
    font-size: 14px;
    margin-top: 5px
}

/* ===== SEATTLE COVERAGE ===== */
.cov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px
}

.cov {
    border-radius: 18px;
    height: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff
}

.cov::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(20, 10, 16, .55))
}

.cov b {
    position: relative;
    z-index: 2;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 17px
}

.cov span {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 12px;
    opacity: .9;
    font-weight: 400
}

.cov.c1 {
    background: linear-gradient(150deg, #FF8FA3, #FF4E63)
}

.cov.c2 {
    background: linear-gradient(150deg, #7B9AE6, #3E5BC9)
}

.cov.c3 {
    background: linear-gradient(150deg, #6FC3A6, #2E9B7A)
}

.cov.c4 {
    background: linear-gradient(150deg, #C9A2F0, #8A4FD8)
}

.cov.c5 {
    background: linear-gradient(150deg, #FFC079, #F0913D)
}

.cov.c6 {
    background: linear-gradient(150deg, #79C7E6, #2E8BC9)
}

.cov-copy {
    text-align: center;
    margin-top: 2rem;
}

.cov-copy p {
    color: var(--body);
    margin-bottom: 1.5rem;
}

.localbox {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    background: var(--coral-tint);
    border: 1px solid var(--coral-soft);
    border-radius: 20px;
    padding: 24px 28px;
    margin-top: 28px
}

.localbox .nb {
    display: block
}

.localbox .nb span {
    font-size: 12px;
    color: var(--body);
    font-weight: 600;
    display: block;
    font-family: "Hanken Grotesk"
}

.localbox .nb a {
    font-family: "Hanken Grotesk";
    font-weight: 800;
    font-size: 24px;
    color: var(--coral)
}

.localbox .nb a:hover {
    color: var(--coral-d)
}

.localbox .sep {
    width: 1px;
    height: 40px;
    background: var(--coral-soft)
}

.localbox p {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--body)
}

/* ===== STORIES ===== */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.story {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .35s var(--ease)
}

.story:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 64px -40px rgba(40, 20, 30, .35)
}

.story .hd2 {
    height: 120px;
    display: grid;
    place-items: center
}

.story .hd2 .ic {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    display: grid;
    place-items: center
}

.story .hd2 .ic svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.story .bd3 {
    padding: 24px
}

.story .meta {
    font-size: 12px;
    color: var(--coral);
    font-weight: 700;
    font-family: "Hanken Grotesk";
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.story h4 {
    font-size: 18px
}

.story p {
    font-size: 14px;
    color: var(--body);
    margin-top: 8px
}

.story-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 24px
}

/* ===== TESTIMONIALS ===== */
.tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px
}

.tcard .qm {
    font-family: "Caveat", cursive;
    font-weight: 700;
    font-size: 46px;
    color: var(--coral);
    line-height: .6
}

.tcard p {
    font-size: 14.5px;
    color: var(--body);
    margin: 8px 0 18px
}

.tcard .by {
    display: flex;
    align-items: center;
    gap: 12px
}

.tcard .by .a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 16px
}

.tcard .by b {
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 14px
}

.tcard .by small {
    display: block;
    font-size: 12px;
    color: var(--faint)
}

.t-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--faint);
    margin-top: 24px
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    height: max-content
}

.fi.open {
    border-color: var(--coral);
    box-shadow: 0 24px 50px -38px rgba(255, 78, 99, .5)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ink)
}

.fq .pm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: grid;
    place-items: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: .3s
}

.fi.open .pm {
    background: var(--coral);
    color: #fff;
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 22px 22px;
    font-size: 14px;
    color: var(--body)
}

/* ===== CTA band ===== */
.cta {
    background: linear-gradient(120deg, #FF4E63, #FF8FA3);
    color: #fff;
    border-radius: 34px;
    margin: 0 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 84px 28px
}

.cta .hrt {
    color: rgba(255, 255, 255, .16)
}

.cta h2 {
    color: #fff;
    font-size: clamp(30px, 4.6vw, 52px);
    position: relative;
    z-index: 2
}

.cta p {
    color: rgba(255, 255, 255, .92);
    font-size: 17.5px;
    max-width: 520px;
    margin: 14px auto 0;
    position: relative;
    z-index: 2
}

.cta .num {
    display: block;
    font-family: "Hanken Grotesk";
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 36px);
    margin: 22px 0 18px;
    position: relative;
    z-index: 2
}

.cta .num:hover {
    color: var(--ink)
}

/* ===== FOOTER ===== */
footer {
    background: var(--plum);
    color: rgba(255, 255, 255, .66);
    padding: 30px 0;
}

.f-bot {
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Hanken Grotesk";
    font-weight: 700;
    color: #fff
}

.f-bot .age span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--coral);
    display: grid;
    place-items: center;
    font-size: 10px;
    color: #fff
}

.f-social {
    display: flex;
    gap: 10px
}

.f-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    transition: .25s
}

.f-social a:hover {
    background: var(--coral)
}

.f-social svg {
    width: 15px;
    height: 15px;
    color: #fff
}

/* mobile callbar */
.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(40, 20, 30, .4)
}

.callbar .t {
    font-family: "Hanken Grotesk";
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--body);
    font-family: "Inter"
}

@media(max-width:980px) {
    .nav-links {
        display: none
    }

    .split,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .media-frame {
        order: -1
    }

    .how-grid .steps2 {
        order: 0
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr
    }

    .cov-grid,
    .tg,
    .story-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .f-top {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }

    .fcard.prof {
        left: -2%
    }

    .fcard.chat {
        right: -2%
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 22px
    }

    .sec {
        padding: 60px 0
    }

    .hero-stage {
        height: 300px
    }

    .bigcirc {
        width: 230px;
        height: 230px
    }

    .fcard.prof,
    .fcard.chat,
    .bub {
        display: none
    }

    .quickstart {
        flex-direction: column;
        align-items: stretch
    }

    .qf {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .stat-grid,
    .cov-grid,
    .tg,
    .story-grid,
    .f-top {
        grid-template-columns: 1fr
    }

    .trust {
        gap: 8px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
