:root {
    --ink: #16121d;
    --paper: #faf8f5;
    --violet: #6650e8;
    --violet-dark: #4938af;
    --lilac: #e9e5ff;
    --peach: #ffc9ac;
    --blue: #bfe4ff;
    --muted: #756f79;
    --line: rgba(22, 18, 29, .13);
    --serif: Georgia, 'Times New Roman', serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px
}

body {
    margin: 0;
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    overflow-x: hidden
}

.site-header {
    transition: background .35s, box-shadow .35s
}

.site-header.scrolled {
    background: rgba(250, 248, 245, .92);
    box-shadow: 0 4px 22px rgba(22, 18, 29, .06);
    backdrop-filter: blur(12px)
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink) !important;
    letter-spacing: -.06em
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background: var(--violet);
    border-radius: 10px;
    color: #fff;
    font-size: .93rem;
    vertical-align: middle;
    letter-spacing: 0
}

.brand-dot {
    color: var(--violet)
}

.nav-link {
    font-size: .88rem;
    color: var(--ink) !important;
    padding: .5rem .7rem !important;
    opacity: .7
}

.nav-link:hover,
.nav-link.active {
    opacity: 1
}

.navbar-toggler {
    border: 0;
    font-size: 1.55rem
}

.navbar-toggler:focus {
    box-shadow: none
}

.btn {
    border-radius: 999px;
    padding: .72rem 1.35rem;
    font-weight: 650;
    font-size: .9rem;
    transition: transform .25s, background .25s, border .25s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-violet {
    color: #fff;
    background: var(--violet)
}

.btn-violet:hover {
    background: var(--violet-dark);
    color: #fff
}

.hero {
    min-height: 790px;
    height: 100svh;
    position: relative;
    color: #fff;
    isolation: isolate
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-image {
    z-index: -3
}

.hero-shade {
    z-index: -2;
    background: linear-gradient(90deg, rgba(20, 13, 34, .82) 0%, rgba(23, 15, 42, .43) 49%, rgba(23, 15, 42, .07) 100%), linear-gradient(0deg, rgba(16, 9, 27, .7), transparent 45%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .75;
    z-index: -1;
    animation: float 7s ease-in-out infinite
}

.orb-one {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #9b78ff00 35%, #9f80ff 38%, transparent 65%);
    right: 7%;
    top: 13%
}

.orb-two {
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, #ffbfad, transparent 67%);
    right: 38%;
    bottom: 17%;
    animation-delay: -3s
}

.hero-content {
    padding-bottom: 70px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .14em;
    font-weight: 800;
    color: var(--violet);
    margin-bottom: 1.15rem
}

.eyebrow span {
    width: 29px;
    height: 2px;
    background: currentColor;
    display: inline-block
}

.hero h1,
h2 {
    letter-spacing: -.06em;
    font-weight: 600;
    line-height: .96
}

.hero h1 {
    font-size: clamp(3.5rem, 7.3vw, 7rem);
    max-width: 780px
}

.hero em,
h2 em {
    font-family: var(--serif);
    font-weight: 400
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 1.7rem 0
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px
}

.hero-link {
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600
}

.hero-link i {
    margin-left: 6px;
    background: rgba(255, 255, 255, .14);
    border-radius: 50%;
    padding: 5px
}

.hero-meta {
    border-top: 1px solid rgba(255, 255, 255, .35);
    padding-top: 18px;
    display: flex;
    gap: 25px;
    margin-top: 70px;
    font-size: .78rem
}

.hero-meta i {
    margin-right: 6px
}

.section-pad {
    padding: 125px 0
}

h2 {
    font-size: clamp(2.7rem, 5.1vw, 5.4rem)
}

.intro-copy,
.muted {
    line-height: 1.75;
    color: var(--muted);
    font-size: 1rem
}

.text-link {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px
}

.text-link i {
    color: var(--violet);
    margin-left: 5px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stat {
    min-height: 165px;
    padding: 28px 25px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.stat:last-child {
    border: 0
}

.stat strong {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -.07em
}

.stat span {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 5px
}

.quote-stat {
    background: var(--lilac)
}

.quote-stat i {
    color: var(--violet);
    font-size: 1.3rem;
    margin-bottom: 4px
}

.quote-stat span {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.3
}

.features {
    background: #eeeae5
}

.feature-card {
    background: #fff;
    min-height: 340px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(24, 19, 34, .11)
}

.feature-main {
    background: var(--violet);
    color: #fff
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lilac);
    color: var(--violet);
    display: grid;
    place-items: center;
    font-size: 1.25rem
}

.feature-main .feature-icon {
    background: #fff;
    color: var(--violet)
}

.feature-icon.peach {
    background: var(--peach);
    color: #ae4e25
}

.feature-icon.blue {
    background: var(--blue);
    color: #1974ae
}

.card-number {
    position: absolute;
    right: 28px;
    top: 30px;
    font-size: .72rem;
    opacity: .55
}

.feature-card h3 {
    font-size: 1.45rem;
    letter-spacing: -.045em;
    margin: 75px 0 12px
}

.feature-card p {
    font-size: .92rem;
    line-height: 1.7;
    max-width: 280px;
    opacity: .7
}

.card-arrow {
    position: absolute;
    right: 28px;
    bottom: 25px;
    font-size: 1.25rem
}

.connection {
    padding-top: 125px
}

.connection-card {
    background: #e7ddd4
}

.connection-photo {
    min-height: 480px
}

.connection-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.connection-card h2 {
    font-size: clamp(2.5rem, 4.3vw, 4.4rem)
}

.connection-card p:not(.eyebrow) {
    color: #615953;
    line-height: 1.7;
    max-width: 450px
}

.guide {
    background: #201833;
    color: #fff
}

.guide .eyebrow {
    color: #c9bbff
}

.steps {
    border-top: 1px solid rgba(255, 255, 255, .25)
}

.step {
    display: grid;
    grid-template-columns: 12% 1fr auto;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding: 30px 0;
    gap: 15px
}

.step>span {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: #c9bbff
}

.step h3 {
    font-size: 1.3rem;
    margin: 0 0 4px
}

.step p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem
}

.step>i {
    font-size: 1.35rem
}

.join {
    background: var(--violet);
    color: #fff;
    position: relative;
    overflow: hidden
}

.join-glow {
    position: absolute;
    width: 1000px;
    height: 550px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    background: radial-gradient(ellipse, rgba(255, 255, 255, .25), transparent 63%)
}

.join h2 {
    font-size: clamp(2.8rem, 5.4vw, 5.7rem)
}

.join p:not(.eyebrow) {
    max-width: 420px;
    margin: 22px auto;
    color: #e3ddff
}

.footer {
    padding: 29px 0;
    background: #141019;
    color: #fff
}

.footer .navbar-brand {
    color: #fff !important
}

.footer p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55)
}

.socials {
    display: flex;
    gap: 13px
}

.socials a {
    color: #fff;
    opacity: .75
}

.socials a:hover {
    opacity: 1
}

.back-to-top {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--violet);
    color: #fff;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

@keyframes float {
    50% {
        transform: translate(13px, -17px) scale(1.05)
    }
}

@media(max-width:991.98px) {
    .site-header:not(.scrolled) {
        background: rgba(250, 248, 245, .94)
    }

    .navbar-collapse {
        padding: 10px 0 5px
    }

    .hero {
        min-height: 720px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat:nth-child(2) {
        border-right: 0
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .connection {
        padding-top: 90px
    }
}

@media(max-width:575.98px) {
    .hero {
        min-height: 660px
    }

    .hero-content {
        padding-bottom: 30px
    }

    .hero h1 {
        font-size: 3.25rem
    }

    .hero-lead {
        font-size: .94rem;
        margin: 1.25rem 0
    }

    .hero-actions {
        gap: 16px
    }

    .hero-actions .btn {
        padding: .62rem 1rem;
        font-size: .82rem
    }

    .hero-link {
        font-size: .78rem
    }

    .hero-meta {
        margin-top: 40px;
        gap: 12px;
        flex-wrap: wrap;
        font-size: .69rem
    }

    .section-pad {
        padding: 82px 0
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line) !important;
        min-height: 128px
    }

    .stat:last-child {
        border-bottom: 0 !important
    }

    .feature-card {
        min-height: 295px
    }

    .connection-photo {
        min-height: 300px
    }

    .step {
        grid-template-columns: 18% 1fr auto
    }

    .step p {
        font-size: .79rem
    }

    .join {
        padding: 90px 0
    }

    .footer {
        padding: 24px 0
    }

    .back-to-top {
        right: 16px;
        bottom: 16px
    }

    .orb-one {
        right: -30%;
        top: 10%
    }
}