:root {
    --night: #160719;
    --plum: #2a0f34;
    --ember: #ff5a2d;
    --rose: #ff4f96;
    --sun: #ffd36e;
    --cream: #fff4e4;
    --paper: #fff8ee;
    --ink: #251225;
    --muted: #725b68;
    --line: rgba(40, 18, 28, .13);
    --max: 1180px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 26px;
}

.font {
    font-family: "Bricolage Grotesque", sans-serif;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--ember);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--ember), var(--rose));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px -18px rgba(255, 79, 150, .7);
    transition: .35s var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -18px rgba(255, 79, 150, .85);
}

.btn.light {
    background: #fff;
    color: var(--night);
}

.btn.dark {
    background: var(--night);
}

nav {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.navin {
    pointer-events: auto;
    max-width: var(--max);
    margin: auto;
    padding: 10px 12px 10px 20px;
    border-radius: 999px;
    background: rgba(22, 7, 25, .62);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    gap: .5rem;
}

.logo img {
   display: block;
   width: 40px;
   height: auto;
}

.navlinks {
    display: flex;
    gap: 24px;
    color: rgba(255, 255, 255, .76);
    font-weight: 800;
    font-size: 14px;
}

.navlinks a:hover {
    color: #fff;
}

.navcall {
    padding: 12px 19px;
    border-radius: 999px;
    background: #fff;
    color: var(--night);
    font-weight: 900;
    font-size: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(55% 55% at 20% 14%, rgba(255, 79, 150, .42), transparent 62%), radial-gradient(45% 45% at 82% 18%, rgba(255, 211, 110, .38), transparent 62%), linear-gradient(135deg, #120719, #2a0f34 46%, #6d2132 75%, #bf3d23);
    padding: 150px 0 100px;
}

.heat {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .25) 0 1px, transparent 1px 7px);
    mix-blend-mode: overlay;
}

@keyframes heat {
    to {
        transform: translateY(-44px);
    }
}

.sun {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    right: -120px;
    top: 100px;
    background: repeating-linear-gradient(0deg, rgba(255, 211, 110, .48) 0 14px, rgba(255, 211, 110, .06) 15px 26px);
    opacity: .75;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ffe2c8;
}

.badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7cffb0;
    box-shadow: 0 0 0 0 rgba(124, 255, 176, .7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(124, 255, 176, 0);
    }
}

h1 {
    font-family: "Bricolage Grotesque";
    font-size: clamp(48px, 6.8vw, 90px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 24px 0 20px;
}

h1 span {
    display: block;
    background: linear-gradient(100deg, #fff, #ffd36e 46%, #ff86b5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: clamp(17px, 2vw, 21px);
    max-width: 600px;
    color: rgba(255, 255, 255, .82);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.fine {
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    margin-top: 16px;
}

.trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    font-weight: 800;
    font-size: 13px;
}

.visual {
    position: relative;
    min-height: 560px;
}

.photo {
    position: absolute;
    right: 0;
    top: 0;
    width: min(420px, 100%);
    height: 510px;
    border-radius: 42px;
    overflow: hidden;
    transform: rotate(4deg);
    box-shadow: 0 48px 100px -42px rgba(0, 0, 0, .9);
    border: 1px solid rgba(255, 255, 255, .25);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18);
}

.photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(22, 7, 25, .78));
}

.voice-card {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 330px;
    border-radius: 34px;
    padding: 24px;
    background: rgba(255, 250, 245, .93);
    backdrop-filter: blur(16px);
    box-shadow: 0 36px 80px -32px #000;
    color: var(--ink);
}

.voice-card .mini {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--rose);
}

.voice-card h3 {
    font-family: "Bricolage Grotesque";
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.05em;
    margin: 10px 0;
}

.wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 46px;
    margin: 16px 0;
}

.wave i {
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(var(--ember), var(--rose));
    height: var(--h);
    animation: wav 1.2s infinite ease-in-out;
}

@keyframes wav {
    50% {
        height: 10px;
    }
}

.bubble {
    position: absolute;
    right: 4px;
    top: 48px;
    z-index: 4;
    background: #fff;
    color: var(--night);
    border-radius: 22px 22px 7px 22px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 18px 44px -18px #000;
    animation: float 4.5s ease-in-out infinite;
}

.bubble small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@keyframes float {
    50% {
        transform: translateY(-12px);
    }
}

.ticker {
    position: relative;
    z-index: 3;
    margin-top: 70px;
    background: rgba(255, 255, 255, .12);
    border-top: 1px solid rgba(255, 255, 255, .18);
    overflow: hidden;
    white-space: nowrap;
}

.track {
    display: inline-flex;
    gap: 38px;
    padding: 14px 0;
    animation: mq 24s linear infinite;
}

.track span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ffe5ce;
}

.track b {
    color: #fff;
}

@keyframes mq {
    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 106px 0;
}

.center {
    text-align: center;
}

.section-title {
    font-family: "Bricolage Grotesque";
    font-size: clamp(34px, 4.8vw, 60px);
    line-height: .98;
    letter-spacing: -.06em;
}

.center p {
    max-width: 800px;
    margin: 18px auto 0;
    color: #6e5966;
    font-size: 17px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px 22px;
    min-height: 235px;
    transition: .35s;
}

.step:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px -46px rgba(95, 39, 25, .55);
}

.num {
    font-family: "Bricolage Grotesque";
    font-size: 42px;
    color: var(--ember);
    font-weight: 800;
}

.step h3 {
    font-size: 20px;
    line-height: 1.1;
    margin: 12px 0 8px;
}

.step p {
    color: #76616d;
    font-size: 14px;
}

.hot {
    background: linear-gradient(135deg, #fff1df, #ffe0ef);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.why-card {
    border-radius: 34px;
    padding: 34px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 22px 60px -42px rgba(95, 39, 25, .55);
}

.why-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ember), var(--rose));
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-family: "Bricolage Grotesque";
    font-size: 24px;
}

.why-card p {
    color: #6c5662;
    margin-top: 8px;
}

.wm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wm-card {
    border-radius: 40px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px -46px rgba(80, 40, 45, .5);
}

.wm-card img{
    display: block;
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.wm-card.dark {
    background: var(--night);
    color: #fff;
}

.tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rose);
}

.dark .tag {
    color: var(--sun);
}

.wm-card h2 {
    font-family: "Bricolage Grotesque";
    font-size: 35px;
    line-height: 1;
    letter-spacing: -.05em;
    margin-top: 8px;
}

.wm-card h3 {
    margin: 10px 0 18px;
}

.wm-card ul {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 22px;
}

.wm-card li {
    display: flex;
    gap: 10px;
    color: #6f5965;
    font-weight: 600;
}

.wm-card.dark li {
    color: rgba(255, 255, 255, .75);
}

.wm-card li:before {
    content: "✦";
    color: var(--ember);
}

.safety {
    background: var(--night);
    color: #fff;
}

.safety .section-title {
    color: #fff;
}

.safe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.safe-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.safe-card h3 {
    font-family: "Bricolage Grotesque";
    font-size: 25px;
}

.safe-card p {
    color: rgba(255, 255, 255, .74);
    margin-top: 8px;
}

.faq-list {
    max-width: 850px;
    margin: 40px auto 0;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    text-align: left;
    gap: 18px;
    padding: 23px 26px;
    font-weight: 900;
    color: var(--ink);
    font-size: 17px;
}

.faq-q span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff0df;
    color: var(--ember);
    transition: .3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-a p {
    padding: 0 26px 23px;
    color: #6a5560;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
    background: var(--ember);
    color: #fff;
}

.final {
    text-align: center;
    background: linear-gradient(135deg, #2a0f34, #bf3d23);
    color: #fff;
}

.final h2 {
    font-family: "Bricolage Grotesque";
    font-size: clamp(42px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -.06em;
}

.final p {
    max-width: 650px;
    margin: 18px auto 30px;
    color: rgba(255, 255, 255, .78);
}

footer {
    padding: 24px 0;
    background: #120719;
    color: rgba(255, 255, 255, .66);
}

.foot {
    text-align: center;
}


.foot p {
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media(max-width: 940px) {
    .navlinks {
        display: none;
    }

    .hero-grid,
    .wm {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .safe-grid {
        grid-template-columns: 1fr;
    }

    .visual {
        min-height: 520px;
    }

    .photo {
        width: 76%;
        height: 460px;
    }

    .sun {
        opacity: .1;
    }
}

@media(max-width: 620px) {
    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding-top: 126px;
    }

    .navin {
        margin: 0 12px;
    }

    .navcall {
        padding: 11px 14px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .photo {
        width: 100%;
        height: 400px;
        transform: none;
    }

    .voice-card {
        position: relative;
        width: 100%;
        margin-top: 300px;
    }

    .wm-card {
        padding: 30px;
    }
}
