:root {
    --bg: #0c0a14;
    --bg-soft: #12101d;
    --card: #171422;
    --card-light: #1d192b;

    --purple: #9b72ff;
    --purple-bright: #b28cff;
    --blue: #5ea7ff;
    --pink: #ff6fae;
    --pink-soft: #ff9cc7;

    --white: #ffffff;
    --text: #eeeaf5;
    --muted: #aaa3b8;
    --subtle: #777082;

    --border: rgba(255,255,255,.09);

    --max-width: 1180px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(12,10,20,.84);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}


.nav-wrap {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
}


.logo > span:last-child > span {
    color: var(--purple-bright);
}


.logo-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    box-shadow:
        0 8px 30px rgba(155,114,255,.25);
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    color: var(--muted);
    font-size: 14px;
}


.main-nav a {
    transition: color .2s ease;
}


.main-nav a:hover {
    color: var(--white);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}


.login-link {
    color: var(--muted);
    font-size: 14px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 0 23px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


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


.btn-small {
    min-height: 40px;
    padding: 0 17px;

    background: var(--white);
    color: #15121d;
}


.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    box-shadow:
        0 14px 35px rgba(155,114,255,.22);
}


.btn-primary:hover {
    box-shadow:
        0 18px 42px rgba(155,114,255,.34);
}


.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
}


.btn-white {
    background: white;
    color: #17111e;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 120px;
}


.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -280px;
    left: -180px;

    background: rgba(155,114,255,.12);

    filter: blur(90px);

    border-radius: 50%;

    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -220px;
    top: 40px;

    background: rgba(255,111,174,.08);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr .9fr;

    align-items: center;

    gap: 80px;
}


.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--purple-bright);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 15px var(--pink);
}


.hero h1 {
    margin-top: 20px;

    max-width: 700px;

    font-size: clamp(52px, 6vw, 82px);
    line-height: .98;

    letter-spacing: -4px;
}


.hero h1 em {
    display: block;

    font-style: normal;

    background:
        linear-gradient(
            90deg,
            var(--purple-bright),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-text {
    max-width: 590px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.75;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 28px;

    color: var(--subtle);

    font-size: 12px;
}


/* =========================
   MATCH CARD
========================= */

.match-stage {
    position: relative;

    min-height: 570px;

    display: grid;
    place-items: center;
}


.match-stage::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(155,114,255,.2),
            rgba(155,114,255,0) 68%
        );
}


.profile-card {
    position: relative;
    z-index: 2;

    width: min(100%, 370px);

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #201b30,
            #14111e
        );

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 28px;

    box-shadow:
        0 35px 90px rgba(0,0,0,.45);

    transform: rotate(2deg);

    transition: transform .3s ease;
}


.profile-card:hover {
    transform: rotate(0deg) translateY(-5px);
}


.profile-photo {
    position: relative;

    height: 270px;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255,111,174,.32),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #36254b,
            #191526
        );
}


.photo-placeholder {
    width: 120px;
    height: 120px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--purple),
            var(--pink)
        );

    border: 5px solid rgba(255,255,255,.16);

    box-shadow:
        0 20px 60px rgba(0,0,0,.3);

    font-size: 48px;
    font-weight: 800;
}


.online-dot {
    position: absolute;

    bottom: 18px;
    right: 18px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: #64e5a0;

    border: 3px solid #191526;
}


.profile-info {
    padding: 25px;
}


.profile-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}


.profile-name-row h3 {
    font-size: 22px;
}


.verified {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    font-size: 11px;
    font-weight: 900;
}


.profile-location {
    margin-top: 3px;

    color: var(--subtle);

    font-size: 12px;
}


.compatibility {
    margin-top: 22px;
}


.compatibility-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.compatibility-score strong {
    color: var(--pink-soft);

    font-size: 15px;
}


.compatibility-score span {
    color: var(--subtle);
    font-size: 11px;
}


.compatibility-bar,
.bar {
    overflow: hidden;

    height: 6px;

    margin-top: 8px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);
}


.compatibility-bar span,
.bar i {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--pink)
        );
}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 18px;
}


.tags span,
.user-tags span {
    padding: 5px 9px;

    border-radius: 7px;

    background: rgba(155,114,255,.10);

    border: 1px solid rgba(155,114,255,.15);

    color: #c8b8e9;

    font-size: 10px;
}


.profile-quote {
    margin-top: 18px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


.card-actions {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-top: 21px;
}


.circle-action {
    width: 47px;
    height: 47px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.04);

    cursor: pointer;

    font-size: 22px;
}


.circle-action.pass {
    color: #aaa;
}


.circle-action.like {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    border: none;

    color: white;
}


.floating-pill {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    border-radius: 100px;

    background: rgba(25,21,36,.88);

    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);

    color: #d7d1df;

    font-size: 11px;
    font-weight: 700;

    backdrop-filter: blur(10px);
}


.pill-top {
    top: 65px;
    right: 8px;
}


.pill-bottom {
    bottom: 72px;
    left: 0;
}


.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #61e2a0;

    box-shadow: 0 0 10px #61e2a0;
}


.spark {
    color: var(--purple-bright);
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 115px 0;
}


.section-heading {
    max-width: 670px;

    margin-bottom: 60px;
}


.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.section-heading h2,
.compatibility-copy h2,
.about-grid h2 {
    margin-top: 15px;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.06;

    letter-spacing: -2px;
}


.section-heading h2 span,
.compatibility-copy h2 span,
.about-grid h2 span {
    color: var(--purple-bright);
}


.section-heading p {
    max-width: 610px;

    margin: 20px auto 0;

    color: var(--muted);

    font-size: 16px;
}


/* =========================
   DISCOVER
========================= */

.discover-section {
    background: #100e18;
}


.feature-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        1fr
        1fr;

    gap: 18px;
}


.feature-card {
    min-height: 360px;

    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            var(--card),
            #13101c
        );

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;
}


.feature-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(155,114,255,.07);

    filter: blur(20px);
}


.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    font-size: 20px;

    margin-bottom: 26px;
}


.feature-icon.purple {
    background: rgba(155,114,255,.12);
    color: var(--purple-bright);
}


.feature-icon.blue {
    background: rgba(94,167,255,.11);
    color: var(--blue);
}


.feature-icon.pink {
    background: rgba(255,111,174,.11);
    color: var(--pink);
}


.feature-card h3 {
    font-size: 22px;
}


.feature-card > p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


.mini-match {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px;

    border-radius: 14px;

    background: rgba(255,255,255,.045);

    border: 1px solid var(--border);
}


.mini-avatar {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    font-weight: 800;
}


.mini-match div:nth-child(2) {
    display: flex;
    flex-direction: column;
}


.mini-match strong {
    font-size: 12px;
}


.mini-match span {
    color: var(--subtle);
    font-size: 10px;
}


.mini-match b {
    margin-left: auto;

    color: var(--pink);

    font-size: 19px;
}


.interest-cloud {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.interest-cloud span {
    padding: 7px 10px;

    border-radius: 8px;

    color: #bbb4c7;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--border);

    font-size: 10px;
}


.match-notification {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(155,114,255,.12),
            rgba(255,111,174,.08)
        );

    border: 1px solid rgba(155,114,255,.15);
}


.notification-heart {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,111,174,.13);

    color: var(--pink);
}


.match-notification div {
    display: flex;
    flex-direction: column;
}


.match-notification strong {
    font-size: 12px;
}


.match-notification small {
    color: var(--subtle);
    font-size: 10px;
}


/* =========================
   COMPATIBILITY
========================= */

.compatibility-grid {
    display: grid;

    grid-template-columns: 1fr .9fr;

    gap: 90px;

    align-items: center;
}


.compatibility-copy > p {
    max-width: 520px;

    margin-top: 24px;

    color: var(--muted);
}


.check-list {
    margin-top: 34px;

    display: grid;

    gap: 18px;
}


.check-list > div {
    display: flex;
    gap: 13px;
}


.check-list > div > span {
    width: 25px;
    height: 25px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(155,114,255,.12);

    color: var(--purple-bright);

    font-size: 12px;
}


.check-list p {
    display: flex;
    flex-direction: column;

    color: var(--muted);

    font-size: 13px;
}


.check-list strong {
    color: var(--text);

    margin-bottom: 2px;
}


.compatibility-demo {
    padding: 32px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #1b1728,
            #12101a
        );

    border: 1px solid var(--border);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);
}


.demo-header {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 12px;
}


.demo-header strong {
    color: var(--pink-soft);

    font-size: 14px;
}


.large-score {
    display: grid;
    place-items: center;

    padding: 34px 0;
}


.score-ring {
    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--pink) 0 91%,
            rgba(255,255,255,.06) 91% 100%
        );

    position: relative;
}


.score-ring::after {
    content: "";

    position: absolute;

    inset: 9px;

    border-radius: 50%;

    background: #171422;
}


.score-ring div {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: baseline;
}


.score-ring strong {
    font-size: 44px;

    letter-spacing: -3px;
}


.score-ring small {
    color: var(--pink);

    font-size: 17px;
}


.compatibility-list {
    display: grid;

    gap: 18px;
}


.compat-row {
    display: grid;

    grid-template-columns: 75px 1fr 38px;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 10px;
}


.compat-row .bar {
    margin: 0;
}


.compat-row b {
    color: var(--text);

    text-align: right;
}


.shared-box {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 26px;

    padding: 13px;

    border-radius: 13px;

    background: rgba(155,114,255,.08);

    border: 1px solid rgba(155,114,255,.12);
}


.shared-box > span {
    color: var(--purple-bright);
}


.shared-box div {
    display: flex;
    flex-direction: column;
}


.shared-box strong {
    font-size: 11px;
}


.shared-box small {
    color: var(--subtle);

    font-size: 9px;
}


/* =========================
   HOW IT WORKS
========================= */

.how-section {
    background: #100e18;
}


.steps {
    display: grid;

    grid-template-columns: 1fr 70px 1fr 70px 1fr;

    align-items: center;
}


.step {
    text-align: center;
}


.step-number {
    color: var(--subtle);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.step-icon {
    width: 66px;
    height: 66px;

    margin: 15px auto 20px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(155,114,255,.15),
            rgba(255,111,174,.08)
        );

    border: 1px solid var(--border);

    color: var(--purple-bright);

    font-size: 22px;
}


.step h3 {
    font-size: 18px;
}


.step p {
    max-width: 220px;

    margin: 9px auto 0;

    color: var(--muted);

    font-size: 12px;
}


.step-line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(155,114,255,.4),
            transparent
        );
}


/* =========================
   PROFILES
========================= */

.profile-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.user-card {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: var(--card);

    border: 1px solid var(--border);
}


.user-photo {
    height: 270px;

    display: grid;
    place-items: center;

    font-size: 65px;
    font-weight: 800;
}


.user-one {
    background:
        radial-gradient(
            circle at 50% 20%,
            #6e578e,
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #2c213c,
            #15121d
        );
}


.user-two {
    background:
        radial-gradient(
            circle at 50% 20%,
            #865170,
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #412235,
            #18121c
        );
}


.user-three {
    background:
        radial-gradient(
            circle at 50% 20%,
            #38627b,
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #182c3b,
            #12151c
        );
}


.user-body {
    padding: 22px;
}


.user-title {
    display: flex;
    align-items: center;
    gap: 7px;
}


.user-title h3 {
    font-size: 18px;
}


.online {
    color: #63df9d;

    font-size: 9px;
}


.user-location {
    color: var(--subtle);

    font-size: 11px;
}


.user-bio {
    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


.user-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 15px;
}


.match-small {
    margin-top: 19px;

    padding-top: 14px;

    border-top: 1px solid var(--border);

    color: var(--subtle);

    font-size: 10px;
}


.match-small strong {
    color: var(--pink-soft);

    margin-right: 5px;
}


.featured-user {
    border-color: rgba(155,114,255,.35);

    box-shadow:
        0 20px 60px rgba(155,114,255,.08);
}


.match-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 6px 9px;

    border-radius: 7px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


.demo-note {
    margin-top: 22px;

    color: var(--subtle);

    text-align: center;

    font-size: 10px;
}


/* =========================
   SAFETY
========================= */

.safety-section {
    background: #100e18;
}


.safety-grid {
    display: grid;

    grid-template-columns: .9fr 1fr;

    gap: 90px;

    align-items: center;
}


.safety-visual {
    position: relative;

    min-height: 410px;

    display: grid;
    place-items: center;
}


.shield {
    width: 190px;
    height: 220px;

    display: grid;
    place-items: center;

    clip-path:
        polygon(
            50% 0,
            92% 15%,
            88% 65%,
            50% 100%,
            12% 65%,
            8% 15%
        );

    background:
        linear-gradient(
            145deg,
            rgba(155,114,255,.3),
            rgba(255,111,174,.14)
        );

    color: var(--purple-bright);

    font-size: 65px;

    box-shadow:
        0 0 80px rgba(155,114,255,.15);
}


.privacy-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 13px;

    border-radius: 12px;

    background: rgba(24,20,34,.9);

    border: 1px solid var(--border);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

    font-size: 10px;
}


.privacy-card span {
    color: var(--purple-bright);
}


.privacy-one {
    top: 40px;
    left: 15px;
}


.privacy-two {
    right: 0;
    top: 145px;
}


.privacy-three {
    left: 20px;
    bottom: 45px;
}


.safety-copy > p {
    max-width: 560px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 15px;
}


.safety-list {
    display: grid;

    gap: 20px;

    margin-top: 32px;
}


.safety-list div {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding-left: 17px;

    border-left: 2px solid rgba(155,114,255,.3);
}


.safety-list strong {
    font-size: 13px;
}


.safety-list span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================
   CTA
========================= */

.final-cta {
    padding: 100px 0;
}


.cta-box {
    position: relative;

    overflow: hidden;

    min-height: 420px;

    display: grid;
    place-items: center;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255,255,255,.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(255,255,255,.09),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #7048bd,
            #a84b83
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.3);
}


.cta-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 50%;

    left: -150px;
    bottom: -230px;
}


.cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    right: -130px;
    top: -180px;
}


.cta-content {
    position: relative;
    z-index: 2;

    width: min(90%, 650px);

    text-align: center;
}


.section-label.light {
    color: rgba(255,255,255,.75);
}


.cta-content h2 {
    margin-top: 17px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.03;

    letter-spacing: -3px;
}


.cta-content p {
    max-width: 520px;

    margin: 20px auto 28px;

    color: rgba(255,255,255,.78);

    font-size: 15px;
}


.cta-decoration {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.cta-decoration span {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.4);
}


.cta-decoration span:nth-child(1) {
    top: 22%;
    left: 18%;
}


.cta-decoration span:nth-child(2) {
    right: 18%;
    top: 30%;
}


.cta-decoration span:nth-child(3) {
    bottom: 20%;
    right: 24%;
}


/* =========================
   ABOUT
========================= */

.about-section {
    border-top: 1px solid var(--border);
}


.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.about-grid p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 15px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 0 25px;

    border-top: 1px solid var(--border);

    background: #09080f;
}


.footer-grid {
    display: grid;

    grid-template-columns: 1fr 1.4fr;

    gap: 80px;
}


.footer-brand p {
    margin-top: 14px;

    color: var(--subtle);

    font-size: 12px;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.footer-links div {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.footer-links strong {
    margin-bottom: 5px;

    color: var(--text);

    font-size: 12px;
}


.footer-links a {
    color: var(--subtle);

    font-size: 11px;

    transition: color .2s ease;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 55px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #5f5968;

    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .hero-copy {
        text-align: center;
    }


    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }


    .match-stage {
        min-height: 520px;
    }


    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }


    .feature-main {
        grid-column: 1 / -1;
    }


    .compatibility-grid,
    .safety-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .safety-copy {
        text-align: center;
    }


    .safety-copy > p {
        margin-left: auto;
        margin-right: auto;
    }


    .safety-list {
        max-width: 600px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }


    .profile-grid .user-card:last-child {
        display: none;
    }


    .steps {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .step-line {
        width: 1px;
        height: 35px;

        margin: auto;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .nav-wrap {
        height: 66px;
    }


    .login-link {
        display: none;
    }


    .hero {
        padding: 75px 0 80px;
    }


    .hero h1 {
        font-size: 51px;

        letter-spacing: -3px;
    }


    .hero-text {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .match-stage {
        min-height: 480px;
    }


    .profile-card {
        width: 330px;
    }


    .pill-top {
        right: 0;
        top: 45px;
    }


    .pill-bottom {
        left: 0;
        bottom: 50px;
    }


    .section {
        padding: 80px 0;
    }


    .section-heading h2,
    .compatibility-copy h2,
    .about-grid h2 {
        font-size: 38px;
    }


    .feature-grid {
        grid-template-columns: 1fr;
    }


    .feature-main {
        grid-column: auto;
    }


    .profile-grid {
        grid-template-columns: 1fr;
    }


    .profile-grid .user-card:last-child {
        display: block;
    }


    .user-photo {
        height: 230px;
    }


    .safety-visual {
        min-height: 350px;
    }


    .privacy-one {
        left: 0;
    }


    .privacy-two {
        right: 0;
    }


    .privacy-three {
        left: 0;
    }


    .cta-box {
        min-height: 390px;

        border-radius: 25px;
    }


    .cta-content h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .footer-links {
        grid-template-columns: 1fr 1fr;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}


@media (max-width: 420px) {

    .logo {
        font-size: 17px;
    }


    .logo-mark {
        width: 30px;
        height: 30px;
    }


    .btn-small {
        padding: 0 13px;
    }


    .hero h1 {
        font-size: 44px;
    }


    .profile-card {
        width: 300px;
    }


    .profile-photo {
        height: 235px;
    }


    .match-stage {
        min-height: 440px;
    }


    .floating-pill {
        font-size: 9px;
    }


    .pill-top {
        right: -5px;
    }


    .pill-bottom {
        left: -5px;
    }

}
