:root {
    --ink: #071522;
    --ink2: #123c69;
    --sky: #dff5ff;
    --teal: #36d6c7;
    --gold: #f9c74f;
    --orange: #ff7f50;
    --paper: #fbfdff;
    --white: #fff;
    --line: rgba(18, 60, 105, .14);
    --muted: #607086;
    --max: 1180px;
    --ease: cubic-bezier(.2, .8, .2, 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);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image: linear-gradient(rgba(18, 60, 105, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 60, 105, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 18px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    letter-spacing: -.01em;
    box-shadow: 0 22px 50px -22px rgba(7, 21, 34, .65);
    transition: .35s var(--ease);
}

.btn:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 0 30px 60px -22px rgba(7, 21, 34, .75);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn.alt {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -26px rgba(7, 21, 34, .45);
}

nav {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-in {
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px -28px rgba(7, 21, 34, .45);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 22px;
}

.logo {
    font-family: Space Grotesk, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.04em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
    color: #33465b;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.nav-call svg {
    width: 15px;
    height: 15px;
}

.hero {
    position: relative;
    padding: 142px 0 76px;
    overflow: hidden;
}

.hero canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .55;
}

.orb1,
.orb2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .7;
    animation: drift 9s ease-in-out infinite;
}

.orb1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--sky), transparent 70%);
    top: 120px;
    left: -90px;
}

.orb2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(249, 199, 79, .45), transparent 70%);
    right: -100px;
    bottom: 90px;
    animation-delay: -4s;
}

@keyframes drift {
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--ink2);
    box-shadow: 0 15px 32px -26px rgba(18, 60, 105, .45);
}

.eyebrow .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25cc88;
    box-shadow: 0 0 0 0 rgba(37, 204, 136, .6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(37, 204, 136, 0);
    }
}

h1 {
    font-family: Space Grotesk, sans-serif;
    font-size: clamp(46px, 7vw, 88px);
    line-height: .93;
    letter-spacing: -.07em;
    margin: 20px 0;
    color: var(--ink);
}

h1 span {
    display: block;
    background: linear-gradient(110deg, var(--ink2), #00a896, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 18px;
    color: #35465a;
    max-width: 570px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.fine {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-top: 18px;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 800;
    color: #30445a;
}

.hub-art {
    position: relative;
    height: 560px;
    display: grid;
    place-items: center;
}

.hub-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 14px 16px;
    box-shadow: 0 24px 60px -32px rgba(7, 21, 34, .5);
    font-weight: 900;
    font-size: 13px;
    animation: float 5s ease-in-out infinite;
}

.hub-card small {
    display: block;
    font-weight: 700;
    color: var(--muted);
    font-size: 11px;
}

.hub-card.a {
    top: 42px;
    left: 12px;
}

.hub-card.b {
    right: 0;
    top: 126px;
    animation-delay: -2s;
}

.hub-card.c {
    left: 44px;
    bottom: 74px;
    animation-delay: -3.5s;
}

.hub-card.d {
    right: 26px;
    bottom: 46px;
    animation-delay: -1.2s;
}

@keyframes float {
    50% {
        transform: translateY(-12px);
    }
}

.switch {
    position: relative;
    width: min(360px, 88vw);
    height: min(360px, 88vw);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff, #e9fbff 55%, #cceef5);
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .8), 0 40px 100px -45px rgba(18, 60, 105, .7);
    display: grid;
    place-items: center;
}

.switch:before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 2px dashed rgba(18, 60, 105, .22);
    animation: spin 30s linear infinite;
}

.switch:after {
    content: "";
    position: absolute;
    inset: 46px;
    border-radius: 50%;
    border: 1px solid rgba(18, 60, 105, .14);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.phone-icon {
    width: 104px;
    height: 104px;
    border-radius: 36px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 20px 50px -24px rgba(7, 21, 34, .7);
}

.phone-icon svg {
    width: 46px;
    height: 46px;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(249, 199, 79, .16);
}

.n1 {
    top: 24px;
    left: 50%;
}

.n2 {
    right: 38px;
    top: 100px;
    background: var(--teal);
    box-shadow: 0 0 0 8px rgba(54, 214, 199, .16);
}

.n3 {
    right: 66px;
    bottom: 56px;
    background: var(--orange);
    box-shadow: 0 0 0 8px rgba(255, 127, 80, .16);
}

.n4 {
    left: 54px;
    bottom: 76px;
    background: #6c63ff;
    box-shadow: 0 0 0 8px rgba(108, 99, 255, .14);
}

.n5 {
    left: 30px;
    top: 130px;
    background: #25cc88;
    box-shadow: 0 0 0 8px rgba(37, 204, 136, .14);
}

.marquee {
    position: relative;
    z-index: 3;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 14px 0;
    white-space: nowrap;
}

.marquee div {
    display: inline-flex;
    gap: 36px;
    animation: mq 24s linear infinite;
}

.marquee span {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.marquee b {
    color: var(--gold);
}

@keyframes mq {
    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 96px 0;
}

.sec-head {
    max-width: 760px;
    margin-bottom: 40px;
}

.sec-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.k {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
}

h2 {
    font-family: Space Grotesk, sans-serif;
    font-size: clamp(32px, 4.8vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin-top: 12px;
}

.lead {
    font-size: 17px;
    color: #46586d;
    margin-top: 14px;
}

.mission {
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: stretch;
}

.mission-text {
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 42px;
    background: linear-gradient(180deg, #fff, #f7fcff);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 1.25rem;
}

.mission-media{
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
}
.mission-media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 950px){
    .mission-media{
        aspect-ratio: 3/2;
    }
}
.proof {
    border-radius: 1.25rem;
    padding: 1rem;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.proof:nth-child(2) {
    background: #0b8f86;
}

.proof:nth-child(3) {
    background: #ff7f50;
}

.proof:nth-child(4) {
    background: #123c69;
}

.proof strong {
    font-family: Space Grotesk;
    font-size: 24px;
    line-height: 1.3;
    display: block;
}

.proof span {
    font-size: 13px;
    font-weight: 700;
    opacity: .82;
}

.steps {
    background: linear-gradient(180deg, #eafffb, #fbfdff);
}

.step-lane {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 28px;
    position: relative;
    box-shadow: 0 20px 44px -34px rgba(18, 60, 105, .5);
}

.step .num {
    font-family: Space Grotesk;
    font-size: 36px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -.05em;
}

.step h3 {
    font-family: Space Grotesk;
    font-size: 20px;
    margin: 10px 0 8px;
}

.step p {
    color: #506178;
    font-size: 15px;
}
.why-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.why-media{
    overflow: hidden;
    border-radius: 28px;
}
.why-media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 26px;
    transition: .35s var(--ease);
}
@media (max-width: 950px){
    .why-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    .why-media{
        aspect-ratio: 4/2;
    }
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px -36px rgba(18, 60, 105, .6);
}

.why-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sky), #fff4d4);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: Space Grotesk;
    font-size: 19px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14.5px;
    color: #526479;
}

.local {
    background: #071522;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.local:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(54, 214, 199, .22), transparent 35%),
        radial-gradient(circle at 90% 70%, rgba(249, 199, 79, .18), transparent 35%);
}

.local .wrap {
    position: relative;
}

.local h2,
.local .lead {
    color: #fff;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 36px;
}

.chip {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    border-radius: 18px;
    padding: 16px 10px;
    text-align: center;
    font-weight: 900;
    font-size: 13px;
    transition: .3s;
}

.chip:hover {
    background: var(--gold);
    color: #071522;
    transform: translateY(-4px);
}

.gender {
    background: #fff;
}

.pass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.pass {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 42px;
    background: #f8fbff;
    border: 1px solid var(--line);
}

.pass.him {
    background: #071522;
    color: #fff;
}

.pass h3 {
    font-family: Space Grotesk;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.04em;
    margin: 10px 0 18px;
}

.pass ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pass li {
    display: flex;
    gap: 12px;
    color: #4c5e73;
}

.pass.him li {
    color: rgba(255, 255, 255, .78);
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--teal);
    color: #071522;
    font-weight: 900;
    display: grid;
    place-items: center;
    flex: none;
}

.pass.him .check {
    background: var(--gold);
}

.safe {
    background: #f5fbff;
}

.safe-panel {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 34px;
}

.age {
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, #e9fbff);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: Space Grotesk;
    box-shadow: inset 0 0 0 10px rgba(18, 60, 105, .05);
}

.age strong {
    font-size: 70px;
    line-height: .8;
}

.age small {
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.safe-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.safe-item {
    border-left: 3px solid var(--teal);
    padding: 8px 0 8px 18px;
}

.safe-item h4 {
    font-family: Space Grotesk;
    font-size: 18px;
}

.safe-item p {
    font-size: 14px;
    color: #53677d;
}

.faq {
    background: #fff;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    padding: 22px 24px;
    text-align: left;
    font-weight: 900;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--ink);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}

.faq-a p {
    padding: 0 24px 22px;
    color: #4d5f73;
}

.faq-item.open .faq-a {
    max-height: 180px;
}

.final {
    padding: 110px 0;
    background: linear-gradient(120deg, var(--ink), #123c69);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final h2 {
    color: #fff;
}

.final p {
    max-width: 620px;
    margin: 16px auto 30px;
    color: rgba(255, 255, 255, .8);
}

footer {
    background: #06101a;
    color: #fff;
    padding: 24px 0;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 28px;
}

.foot p {
    max-width: 430px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media(max-width:950px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .mission-grid,
    .safe-panel {
        grid-template-columns: 1fr;
    }

    .hub-art {
        height: 460px;
        order: -1;
    }

    .step-lane,
    .why-grid,
    .safe-list {
        grid-template-columns: 1fr 1fr;
    }

    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pass-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 18px;
    }

    .hero {
        padding-top: 116px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hub-art {
        height: 360px;
    }

    .hub-card {
        display: none;
    }

    .step-lane,
    .why-grid,
    .safe-list,
    .city-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .nav-call {
        font-size: 0;
        padding: 12px;
    }

    .nav-call svg {
        width: 18px;
        height: 18px;
    }
}
