:root {
    --ink: #23223A;
    --ink-2: #454360;
    --soft: #7A789A;
    --lav: #C9C2F2;
    --peri: #AFC4F5;
    --pink: #F6CFE3;
    --cream: #FFF6EE;
    --deep: #23223A;
    --glass: rgba(255, 255, 255, .55);
    --glass-b: rgba(255, 255, 255, .75);
    --line: rgba(80, 70, 140, .12);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1180px;
    --sh: 0 30px 70px -30px rgba(90, 80, 160, .35);
    --sh-sm: 0 16px 40px -22px rgba(90, 80, 160, .38);
    --us-bg: #050918;
    --us-panel: #0E1530;
    --us-panel2: #151033;
    --us-ink: #F9F7FF;
    --us-soft: #B7B2D8;
    --us-lav: #A994FF;
    --us-pink: #FF83C6;
    --us-gold: #FFE0A3;
    --us-cyan: #8BE8FF;
    --us-line: rgba(255, 255, 255, .16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--us-bg);
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background:
        radial-gradient(850px 560px at 15% -5%, rgba(169, 148, 255, .34), transparent 62%),
        radial-gradient(740px 520px at 90% 7%, rgba(255, 131, 198, .24), transparent 60%),
        radial-gradient(760px 620px at 55% 42%, rgba(139, 232, 255, .12), transparent 64%),
        linear-gradient(180deg, #050918 0%, #0B1028 54%, #050918 100%);
    color: var(--us-ink);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -4;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .52) 0 1px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .35) 0 1px, transparent 1.5px),
        radial-gradient(circle at 65% 72%, rgba(255, 255, 255, .38) 0 1px, transparent 1.5px);
    background-size: 90px 90px, 130px 130px, 110px 110px;
    opacity: .48;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--ink);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px
}

.serif {
    font-family: "Cormorant Garamond", serif
}

.kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--us-gold);
    text-shadow: 0 0 18px rgba(255, 224, 163, .22);
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.kicker .hp {
    color: #E2719E
}

/* daisies - Evermore-style floral outlines */
.daisy {
    position: absolute;
    pointer-events: none;
    opacity: .18;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, .15));
    animation: spinSlow 60s linear infinite
}

.daisy svg {
    width: 100%;
    height: 100%
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

/* glass */
.glass {
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    box-shadow: 0 30px 90px -50px rgba(169, 148, 255, .7);
    backdrop-filter: blur(20px);
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: .4s var(--ease);
    background: linear-gradient(135deg, var(--us-lav), var(--us-pink));
    color: #fff;
    box-shadow: 0 18px 44px -18px rgba(255, 131, 198, .7);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -16px rgba(35, 34, 58, .55)
}

.btn svg {
    width: 16px;
    height: 16px
}

.btn-glass {
    backdrop-filter: blur(14px);
    box-shadow: var(--sh-sm);
    background: rgba(255, 255, 255, .08);
    color: var(--us-ink);
    border: 1px solid var(--us-line);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .75)
}

/* nav */
nav {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none
}

.nav-in {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    backdrop-filter: blur(18px);
    border-radius: 100px;
    padding: 10px 12px 10px 22px;
    max-width: 980px;
    margin: 0 auto;
    background: rgba(5, 9, 24, .72);
    border: 1px solid var(--us-line);
    box-shadow: 0 18px 60px -34px rgba(169, 148, 255, .7);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -.01em;
    color: var(--us-ink);
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2)
}

.nav-links a {
    transition: color .3s;
    color: var(--us-ink);
}

.nav-links a:hover {
    color: var(--us-gold)
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 20px;
    border-radius: 100px;
    transition: .35s var(--ease);
    background: linear-gradient(135deg, var(--us-lav), var(--us-pink));
    color: #fff;
}

.nav-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -12px rgba(35, 34, 58, .5)
}

.nav-call svg {
    width: 13px;
    height: 13px
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 190px 0 110px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 110px 24px 20px;
    border: 1px solid var(--us-line);
    border-radius: 42px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 70px 140px -90px rgba(169, 148, 255, .8);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.015em;
    color: var(--us-ink);
    font-size: clamp(50px, 7.3vw, 92px);
    text-shadow: 0 0 54px rgba(169, 148, 255, .22);
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(110deg, var(--us-gold), var(--us-pink), var(--us-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .lede {
    font-size: clamp(17px, 1.9vw, 20px);
    color: var(--us-soft);
    max-width: 520px;
    margin-top: 22px;
    font-weight: 400
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px
}

.hero-num {
    display: flex;
    flex-direction: column
}

.hero-num small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--us-gold)
}

.hero-num a {
    font-weight: 700;
    font-size: 23px;
    letter-spacing: -.01em;
    color: var(--us-ink);
    text-shadow: 0 0 24px rgba(255, 255, 255, .18);
}

.hero-num a:hover {
    color: var(--us-gold);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--us-soft);
    flex-wrap: wrap
}

.hero-trust b {
    font-weight: 700;
    color: var(--us-ink)
}

.hero-trust .d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--us-pink);
    box-shadow: 0 0 12px rgba(255, 131, 198, .6);
}

/* floating collage */
.cloud {
    position: relative;
    height: 540px;
    filter: drop-shadow(0 50px 70px rgba(0, 0, 0, .32));
}

.photo-blob {
    position: absolute;
    top: 44px;
    left: 14%;
    width: 310px;
    height: 380px;
    overflow: hidden;
    animation: blobf 9s ease-in-out infinite;
    border-radius: 38px 120px 42px 120px;
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 42px 120px -42px rgba(255, 131, 198, .55), 0 0 0 12px rgba(255, 255, 255, .05);
    transform: rotate(6deg);
}

.photo-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@keyframes blobf {

    0%,
    100% {
        transform: rotate(-3deg) translateY(0)
    }

    50% {
        transform: rotate(-2deg) translateY(-10px)
    }
}

.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    font-size: 13.5px;
    font-weight: 600;
    animation: chipf 6s ease-in-out infinite;
    background: rgba(5, 9, 24, .72);
    border: 1px solid var(--us-line);
    color: var(--us-ink);
    box-shadow: 0 18px 60px -34px rgba(169, 148, 255, .7);
}

@keyframes chipf {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.chip small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--us-soft);
}

.chip .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .85)
}

.chip.c1 {
    top: 6px;
    right: 4%;
    animation-delay: -1s
}

.chip.c1 .av {
    background: linear-gradient(135deg, #F4B183, #E2719E)
}

.chip.c2 {
    bottom: 104px;
    left: 0;
    animation-delay: -3s
}

.chip.c2 .vw {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 18px
}

.chip.c2 .vw i {
    width: 3px;
    border-radius: 3px;
    background: #8B7BD8;
    animation: wv 1.5s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 6px
    }

    50% {
        height: var(--h, 15px)
    }
}

.chip.c3 {
    bottom: 10px;
    right: 10%;
    animation-delay: -4.5s
}

.chip.c3 .live {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #74D8A4;
    box-shadow: 0 0 0 0 rgba(116, 216, 164, .6);
    animation: pulse 2.2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(116, 216, 164, .6)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(116, 216, 164, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(116, 216, 164, 0)
    }
}

.heart-f {
    position: absolute;
    font-size: 20px;
    opacity: .7;
    animation: chipf 7s ease-in-out infinite
}

.heart-f.h1 {
    top: 24%;
    left: 2%;
    animation-delay: -2s
}

.heart-f.h2 {
    top: 64%;
    right: 0;
    animation-delay: -5s
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s var(--ease), transform .9s 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
}

/* ===== glass stat strip ===== */
.statstrip {
    padding: 20px 0 104px;
}

.strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: 26px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow: var(--sh-sm);
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--us-line);
}

.stt {
    padding: 30px 26px;
    text-align: center;
    background: rgba(255, 255, 255, .03);
}

.stt .n {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1;
    background: linear-gradient(110deg, var(--us-gold), var(--us-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums
}

.stt .l {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--us-soft);
    margin-top: 8px
}

/* ===== sections ===== */
.sec {
    padding: 108px 0;
    position: relative;
}

.sec-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px
}

.sec-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: var(--us-ink);
    font-size: clamp(38px, 5.3vw, 70px);
    line-height: 1.04;
    letter-spacing: -.01em;
    margin-top: 14px
}

.sec-head h2 em {
    font-style: italic;
    background: linear-gradient(110deg, var(--us-gold), var(--us-pink), var(--us-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec-head p {
    color: var(--us-soft);
    margin-top: 16px;
    font-size: 17px
}

/* how it works - glass steps */
.flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.fcard {
    padding: 32px 26px;
    text-align: center;
    transition: transform .45s var(--ease), box-shadow .45s;

    background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.fcard::before {
    content: "";
    position: absolute;
    inset: auto -20% -38% -20%;
    height: 90px;
    background: radial-gradient(ellipse, rgba(169, 148, 255, .22), transparent 68%);
}

.fcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh)
}

.fcard .ic {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(169, 148, 255, .32), rgba(255, 131, 198, .24));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 0 38px rgba(169, 148, 255, .2);

}

.fcard h3 {
    font-weight: 700;
    font-size: 18.5px;
    letter-spacing: -.01em;
    color: var(--us-ink);
}

.fcard p {
    font-size: 14.5px;
    color: var(--us-soft);
    margin-top: 7px
}

.fcard .stepn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--us-gold);
    display: block;
    margin-bottom: 10px
}

/* her / him - glass panels */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.pane {
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    box-shadow: 0 34px 100px -60px rgba(255, 131, 198, .65);
}

.pane .wash {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    top: -90px;
    right: -70px;
    opacity: .65;
    pointer-events: none
}

.pane.her .wash {
    background: #F6CFE3
}

.pane.him .wash {
    background: #AFC4F5
}

.pane .pk {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--us-gold);
    position: relative
}

.pane.him .pk {
    color: var(--us-cyan);
}

.pane h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    margin: 12px 0 22px;
    position: relative;
    color: var(--us-ink);
}

.pane h3 em {
    font-style: italic
}

.pane ul {
    list-style: none;
    position: relative
}

.pane li {
    display: flex;
    gap: 13px;
    padding: 11px 0;
    font-size: 15.5px;
    color: var(--us-soft);
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.pane li:last-child {
    border: none
}

.pane li b {
    color: #fff;
    font-weight: 600
}

.pane li .ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--us-pink), var(--us-lav));
}

.pane.him li .ck {
    background: linear-gradient(135deg, var(--us-cyan), var(--us-lav));
}

.pane li .ck svg {
    width: 12px;
    height: 12px
}

.pane .btn {
    margin-top: 26px;
    position: relative
}

/* whispers - testimonials */
.whispers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.wh {
    padding: 30px 28px;
    transition: transform .45s var(--ease);
    background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    border-radius: 28px;
}

.wh:hover {
    transform: translateY(-6px)
}

.wh .stars {
    color: var(--us-gold);
    text-shadow: 0 0 18px rgba(255, 224, 163, .2);
    letter-spacing: 3px;
    font-size: 14px
}

.wh p {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.45;
    margin: 14px 0 18px;
    color: var(--us-ink);
}

.wh .who {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.wh .who small {
    display: block;
    font-weight: 500;
    color: var(--us-soft);
    font-size: 12px
}

.wh .who .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .85)
}

.wh:nth-child(1) .av {
    background: linear-gradient(135deg, #F4B183, #E2719E)
}

.wh:nth-child(2) .av {
    background: linear-gradient(135deg, #AFC4F5, #8B7BD8)
}

.wh:nth-child(3) .av {
    background: linear-gradient(135deg, #A8DCC0, #AFC4F5)
}

.wcap {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: var(--us-soft);
}

/* safety glass */
.safe-in {
    align-items: center;
    padding: 50px 54px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(169, 148, 255, .12), rgba(255, 131, 198, .08));
    border: 1px solid var(--us-line);
}

.orb18 {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    flex-shrink: 0;
    background: conic-gradient(from 180deg, var(--us-lav), var(--us-pink), var(--us-gold), var(--us-cyan), var(--us-lav));
    box-shadow: 0 0 60px rgba(255, 131, 198, .28);
}

.orb18 .n {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    color: #080B19;
}

.orb18 small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #080B19;
}

.safe-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.safe-it h4 {
    font-weight: 700;
    font-size: 16.5px;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--us-ink);
}

.safe-it p {
    font-size: 14px;
    color: var(--us-soft);
    margin-top: 6px
}

/* faq */
.fwrap {
    max-width: 740px;
    margin: 0 auto;
    display: grid;
    gap: 14px
}

.fi {
    overflow: hidden;
    transition: box-shadow .4s;
    background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    border-radius: 24px;
    box-shadow: 0 20px 70px -52px rgba(169, 148, 255, .6);
}

.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-size: 17.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--us-ink);
}

.fq .pm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--us-line);
    box-shadow: inset 0 0 0 1px var(--glass-b);
    flex-shrink: 0;
    position: relative;
    transition: transform .4s var(--ease), background .3s
}

.fi.open .pm {
    background: linear-gradient(135deg, var(--us-lav), var(--us-pink));
    transform: rotate(135deg)
}

.fq .pm::before,
.fq .pm::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: background .3s
}

.fi.open .pm::before,
.fi.open .pm::after {
    background: #fff
}

.fq .pm::before {
    top: 50%;
    left: 10px;
    right: 10px;
    height: 1.5px;
    transform: translateY(-50%)
}

.fq .pm::after {
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1.5px;
    transform: translateX(-50%)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease)
}

.fa p {
    padding: 0 28px 26px;
    color: var(--us-soft);
    font-size: 15.5px
}

/* close */
.close {
    padding: 104px 0 118p
}

.close-in {
    position: relative;
    text-align: center;
    padding: 84px 40px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid var(--us-line);
    border-radius: 42px;
    box-shadow: 0 50px 120px -80px rgba(255, 131, 198, .8);
}

.close-in .dz {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    opacity: .16;
    filter: drop-shadow(0 0 28px rgba(255, 255, 255, .2));
}

.close-in h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: var(--us-ink);
    font-size: clamp(38px, 5.3vw, 70px);
    line-height: 1.02;
    position: relative
}

.close-in h2 em {
    font-style: italic;
    background: linear-gradient(110deg, var(--us-gold), var(--us-pink), var(--us-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.close-in .sub {
    color: var(--us-soft);
    max-width: 440px;
    margin: 16px auto 0;
    position: relative
}

.close-in .num {
    display: inline-block;
    font-weight: 700;
    font-size: clamp(24px, 3.6vw, 38px);
    letter-spacing: -.01em;
    margin: 26px 0 4px;
    position: relative;
    color: var(--us-ink);
    text-shadow: 0 0 24px rgba(255, 255, 255, .18);
}

.close-in .num:hover {
    color: var(--us-gold);
}

.close-in .ops {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative
}

.close-in .cmeta {
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--us-soft);
    position: relative
}

.close-in .cmeta a {
    border-color: rgba(255, 255, 255, .2);
}

.close-in .cmeta a:hover {
    color: #8B7BD8
}

/* footer */
footer {
    padding: 0 0 70px;
    color: var(--us-ink);
}

.f-in {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 44px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.f-brand p {
    color: var(--us-soft);
    font-size: 14px;
    max-width: 270px;
    margin-top: 12px
}

.f-cols {
    display: flex;
    gap: 54px;
    flex-wrap: wrap
}

.f-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--us-gold);
    margin-bottom: 14px
}

.f-col a {
    display: block;
    padding: 5px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--us-ink);
    transition: color .3s
}

.f-col a:hover {
    color: var(--us-gold);
}

.f-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
    color: var(--us-soft);
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    color: #fff;
}

.f-bot .age span {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--us-gold), var(--us-pink));
    color: #080B19;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .85)
}

.us-art {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

.us-art svg {
    position: absolute;
    opacity: .32;
    filter: drop-shadow(0 0 24px rgba(169, 148, 255, .28));
}

.us-art .a {
    width: 430px;
    right: -130px;
    top: 120px;
    animation: usDrift 12s ease-in-out infinite;
}

.us-art .b {
    width: 300px;
    left: -90px;
    bottom: 20%;
    animation: usDrift 15s ease-in-out infinite reverse;
}

.us-art .c {
    width: 540px;
    right: 20%;
    bottom: -210px;
    opacity: .16;
    animation: usSpin 90s linear infinite;
}

@keyframes usDrift {

    0%,
    100% {
        transform: translateY(0) rotate(-6deg)
    }

    50% {
        transform: translateY(-26px) rotate(6deg)
    }
}

@keyframes usSpin {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width:940px) {
    .hero::before {
        inset: 96px 12px 16px;
        border-radius: 28px;
    }

    .nav-links {
        display: none
    }

    .nav-in {
        max-width: none;
        margin: 0 14px
    }

    .hero-grid,
    .duo,
    .safe-in,
    .safe-list {
        grid-template-columns: 1fr
    }

    .flow,
    .whispers {
        grid-template-columns: 1fr 1fr
    }

    .cloud {
        height: 480px;
        max-width: 430px;
        margin: 0 auto
    }

    .strip {
        grid-template-columns: 1fr 1fr
    }

    .safe-in {
        gap: 30px;
        justify-items: center;
        text-align: left;
        padding: 40px 30px
    }

    .safe-list {
        gap: 22px
    }

    .callbar {
        display: flex
    }
}

@media(max-width:580px) {
    .nav-in {
        margin: 0 10px
    }

    .wrap {
        padding: 0 20px
    }

    .hero {
        padding: 150px 0 60px
    }

    .flow,
    .whispers,
    .strip {
        grid-template-columns: 1fr
    }

    .cloud {
        height: 430px
    }

    .photo-blob {
        width: 250px;
        height: 310px;
        position: static;
    }

    .pane {
        padding: 34px 26px;
        border-radius: 28px
    }

    .close-in {
        padding: 56px 24px;
        border-radius: 28px
    }

    .sec {
        padding: 70px 0
    }
    .hero-grid{
        padding: 0 32px!important;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none;
        transition: none
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}