:root {
    --bg:#fbfaff;
    --surface:#fff;
    --text:#1f1734;
    --muted:#6f6881;
    --primary:#7b4dff;
    --primary-dark:#5f34df;
    --soft:#f3efff;
    --line:#e9e4f3;
    --shadow:0 20px 60px rgba(70,40,130,.12)
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    font-family:Manrope,Arial,sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6
}
img {
    display:block;
    max-width:100%
}
a {
    text-decoration:none;
    color:inherit
}
.container {
    width:min(1180px,calc(100% - 40px));
    margin:auto
}
.header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(251,250,255,.86);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(233,228,243,.8)
}
.header__inner {
    height:78px;
    display:flex;
    align-items:center;
    gap:38px
}
.logo {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:21px;
    font-weight:800
}
.logo__image {
    width:34px;
    height:34px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primary),#b18cff);
    color:white;
    display:grid;
    place-items:center;
    box-shadow:0 8px 20px rgba(123,77,255,.28)
}
.nav {
    display:flex;
    gap:30px;
    margin-left:auto
}
.nav a {
    font-size:14px;
    color:var(--muted);
    font-weight:600
}
.nav a:hover {
    color:var(--primary)
}
.button {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    border-radius:15px;
    padding:15px 22px;
    font-weight:800;
    transition:.2s ease
}
.button:hover {
    transform:translateY(-2px)
}
.button--small {
    padding:11px 16px;
    font-size:13px
}
.button--ghost {
    border:1px solid var(--line);
    background:#fff
}
.button--primary {
    background:linear-gradient(135deg,var(--primary),#9b6cff);
    color:#fff;
    box-shadow:0 15px 35px rgba(123,77,255,.28)
}
.button--text {
    color:var(--primary)
}
.button--white {
    background:#fff;
    color:var(--primary);
    white-space:nowrap
}
.menu-button {
    display:none;
    background:none;
    border:0;
    width:38px
}
.menu-button span {
    display:block;
    height:2px;
    background:var(--text);
    margin:6px 0
}
.hero {
    position:relative;
    overflow:hidden;
    padding:78px 0 86px
}
.hero__grid {
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:60px;
    align-items:center
}
.hero__blur {
    position:absolute;
    border-radius:999px;
    filter:blur(10px);
    opacity:.45
}
.hero__blur--one {
    width:380px;
    height:380px;
    background:#eadfff;
    right:-80px;
    top:40px
}
.hero__blur--two {
    width:220px;
    height:220px;
    background:#ffe4f0;
    left:-80px;
    bottom:-50px
}
.hero__content {
    position:relative;
    z-index:2
}
.eyebrow {
    display:inline-block;
    padding:7px 12px;
    background:var(--soft);
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    border-radius:999px
}
.hero h1,.section h2 {
    margin:22px 0 20px;
    line-height:1.04;
    letter-spacing:-.045em
}
.hero h1 {
    font-size:clamp(48px,6.4vw,82px)
}
.hero h1 span {
    color:var(--primary)
}
.hero__lead {
    max-width:610px;
    font-size:19px;
    color:var(--muted)
}
.hero__actions {
    display:flex;
    gap:10px;
    margin:30px 0
}
.hero__trust {
    display:flex;
    align-items:center;
    gap:16px;
    font-size:13px
}
.hero__trust span {
    color:var(--muted)
}
.avatars {
    display:flex
}
.avatars img {
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--bg);
    margin-left:-11px
}
.avatars img:first-child {
    margin-left:0
}

.stats {
    background:#fff;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line)
}
.stats__grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:28px 0
}
.stats__grid div {
    padding:0 24px;
    border-right:1px solid var(--line)
}
.stats__grid div:last-child {
    border-right:0
}
.stats strong,.stats span {
    display:block
}
.stats strong {
    font-size:15px
}
.stats span {
    font-size:12px;
    color:var(--muted);
    margin-top:4px
}
.section {
    padding:104px 0
}
.section--soft {
    background:var(--soft)
}
.split {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px
}
.section h2 {
    font-size:clamp(36px,4vw,58px)
}
.section__text {
    font-size:18px;
    color:var(--muted)
}
.section__header {
    max-width:690px;
    margin-bottom:45px
}
.section__header.center {
    text-align:center;
    margin-left:auto;
    margin-right:auto
}
.section__header p {
    color:var(--muted);
    font-size:17px
}
.feature-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px
}
.feature-card {
    background:#fff;
    border:1px solid rgba(123,77,255,.08);
    border-radius:24px;
    padding:28px;
    min-height:260px;
    box-shadow:0 12px 35px rgba(70,40,130,.05)
}
.feature-card__icon {
    width:50px;
    height:50px;
    background:var(--soft);
    border-radius:16px;
    display:grid;
    place-items:center;
    font-size:24px
}
.feature-card h3 {
    font-size:19px;
    margin:30px 0 10px
}
.feature-card p {
    color:var(--muted);
    font-size:14px
}
.steps {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px
}
.step {
    border-top:1px solid var(--line);
    padding:28px 10px 0
}
.step span {
    color:var(--primary);
    font-weight:800
}
.step h3 {
    font-size:21px
}
.step p {
    color:var(--muted)
}
.section--cta {
    padding:48px 0
}
.cta {
    background:linear-gradient(135deg,#6d42ea,#9a6fff);
    color:#fff;
    border-radius:34px;
    padding:48px 54px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 25px 70px rgba(97,53,224,.25)
}
.cta h2 {
    font-size:42px;
    margin:14px 0
}
.cta p {
    margin:0;
    color:rgba(255,255,255,.8)
}
.eyebrow--light {
    background:rgba(255,255,255,.14);
    color:#fff
}
.faq-layout {
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:70px
}
.faq-list details {
    border-bottom:1px solid var(--line);
    padding:21px 0
}
.faq-list summary {
    cursor:pointer;
    font-weight:800;
    list-style:none
}
.faq-list summary::-webkit-details-marker {
    display:none
}
.faq-list summary:after {
    content:'+';
    float:right;
    color:var(--primary);
    font-size:22px
}
.faq-list details[open] summary:after {
    content:'–'
}
.faq-list p,
.faq-list li {
    color:var(--muted);
    margin:12px 0 0
}
.footer {
    background:#211a31;
    color:#fff;
    padding:64px 0 24px
}
.footer__grid {
    display:grid;
    grid-template-columns:1.5fr repeat(3,1fr);
    gap:50px
}
.footer h4 {
    margin-top:0
}
.footer a,.footer span,.footer p {
    display:block;
    color:#bdb6c8;
    font-size:13px;
    margin:9px 0
}
.logo--footer span {
    color:#fff
}
.footer__bottom {
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:45px;
    padding-top:20px;
    display:flex;
    justify-content:space-between
}
.footer__bottom span {
    display:inline
}
.legal {
    padding:80px 0
}
.legal h1 {
    font-size:48px
}
.legal h2 {
    margin-top:38px
}
.legal p,.legal li {
    color:var(--muted)
}








@media(max-width:960px) {
.nav,.header .button--ghost {
    display:none
}
.menu-button {
    display:block;
    margin-left:auto
}
.nav.is-open {
    display:flex;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fff;
    padding:22px 20px;
    flex-direction:column;
    border-bottom:1px solid var(--line)
}
.hero__grid,.split,.faq-layout {
    grid-template-columns:1fr
}

.feature-grid {
    grid-template-columns:repeat(2,1fr)
}
.stats__grid {
    grid-template-columns:repeat(2,1fr);
    gap:20px
}
.stats__grid div:nth-child(2) {
    border-right:0
}
.cta {
    flex-direction:column;
    align-items:flex-start
}
.footer__grid {
    grid-template-columns:repeat(2,1fr)
}

}






@media(max-width:620px) {
.container {
    width:min(100% - 24px,1180px)
}
.hero {
    padding-top:48px
}
.hero h1 {
    font-size:48px
}
.hero__lead {
    font-size:16px
}
.hero__actions {
    flex-direction:column;
    align-items:stretch
}


.stats__grid,.feature-grid,.steps,.footer__grid {
    grid-template-columns:1fr
}
.stats__grid div {
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:14px 0
}
.section {
    padding:72px 0
}
.cta {
    padding:34px 26px
}
.cta h2 {
    font-size:34px
}
.footer__bottom {
    flex-direction:column;
    gap:8px
}
}
.about-layout {
    display:grid;
    grid-template-columns: .84fr 1fr;
    gap:72px;
    align-items:center
}
.about-copy h2 {
    margin-top:22px
}

.about-image {
    display: block;
    max-width: 100%;
    max-height: 700px;
    margin: 0 auto;
    filter: drop-shadow(0 24px 45px rgba(70, 40, 130, 0.24));
}




.how-section {
    background:
        linear-gradient(
            180deg,
            var(--bg) 0%,
            #f7f3ff 100%
        );
}

.steps--visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    min-height: 360px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid rgba(123, 77, 255, 0.08);
    border-radius: 28px;
    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(70, 40, 130, 0.08);
}

.step-card__content {
    position: relative;
    z-index: 2;
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 30px;
    padding: 0 11px;

    border-radius: 999px;
    background: var(--soft);

    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.step-card h3 {
    margin: 20px 0 10px;

    font-size: 23px;
    line-height: 1.25;
}

.step-card p {
    margin: 0;

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

.step-card__visual {
    height: 200px;
    margin-top: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.step-card__visual img {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: 200px;

    object-fit: contain;

    filter: drop-shadow(0 18px 35px rgba(90,60,170,.18));
}






.language-switcher {
    position: relative;
}

.language-switcher__menu {
    display: none;

    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    min-width: 80px;

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;

    box-shadow: 0 20px 45px rgba(45, 29, 78, .12);

    overflow: hidden;
}

.language-switcher.open .language-switcher__menu {
    display: block;
}

.language-switcher__menu a {
    display: block;
    padding: 12px 18px;
    color: inherit;
    text-decoration: none;
}

.language-switcher__menu a:hover {
    background: #f5f5f5;
}





.language-switcher__button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;

    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;

    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    transition: .2s;
}

.language-switcher__button:hover {
    background: #f8f6ff;
    border-color: var(--primary);
}


.language-switcher__arrow {
    width: 7px;
    height: 7px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg) translateY(-2px);
    transition: .2s;
}

.language-switcher.open .language-switcher__arrow {
    transform: rotate(225deg);
}






.hero__visual {
    position: relative;

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

    min-height: 580px;
    padding-top: 70px;
}


.match-card {
    position: relative;

    width: 300px;
    height: 460px;

    overflow: hidden;

    border: 8px solid #fff;
    border-radius: 34px;
    background: #fff;

    box-shadow: 0 28px 65px rgba(70, 40, 130, 0.18);
}


.match-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.match-card--woman {
    z-index: 1;
    margin-right: -38px;

    transform: rotate(-5deg);
    transform-origin: bottom center;
}

.match-card--man {
    z-index: 2;
    margin-left: -38px;

    transform: rotate(5deg);
    transform-origin: bottom center;
}


.match-card__info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 15px 17px;

    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(12px);
}

.match-card__info strong {
    font-size: 16px;
}

.match-card__info span {
    margin-top: 2px;

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



/* PRICING */



/* PRICING */

.pricing-hero {
    padding: 110px 0 70px;
    text-align: center;
}

.pricing-hero h1 {
    max-width: 760px;
    margin: 14px auto 18px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.pricing-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid rgba(20, 24, 40, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(28, 32, 54, 0.08);
}

.pricing-card--featured {
    transform: translateY(-10px);
    border-color: rgba(117, 86, 255, 0.28);
}

.pricing-card__badge {
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(117, 86, 255, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
}

.pricing-card__price {
    margin-bottom: 22px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-card__price span {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

.pricing-card ul {
    margin: 0 0 28px;
    padding-left: 20px;
    line-height: 1.7;
}

.pricing-card li {
    margin: 10px 0 0;
    color: var(--muted);
}

.pricing-card .button {
    width: 100%;
    margin-top: auto;
}

.spark-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.spark-card {
    padding: 26px;
    border: 1px solid rgba(20, 24, 40, 0.08);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 14px 40px rgba(28, 32, 54, 0.06);
}

.spark-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.spark-card span {
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.pricing-note {
    max-width: 900px;
    margin: 38px auto 0;
    padding: 26px 30px;
    border-radius: 22px;
    background: rgba(117, 86, 255, 0.08);
    line-height: 1.7;
}

.pricing-note strong {
    display: block;
    margin-bottom: 8px;
}





@media(max-width:960px) {

.about-layout {
    grid-template-columns:1fr;
    gap:38px
}

.about-image {
        height: 490px;
}

.steps--visual {
    grid-template-columns: repeat(2, 1fr);
}

.step-card:last-child {
    grid-column: 1 / -1;
}

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

.hero__visual {
    min-height: 480px;
}

}





@media(max-width:620px) {

.about-image {
        height: 390px;
}

.section__header p {
    font-size:15px
}

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

.step-card,
.step-card:last-child {
    grid-column: auto;
}

.step-card {
    min-height: 330px;
    padding: 24px;
}

.step-card__visual {
    height: 130px;
}

.step-card__visual img {
    max-height: 130px;
}

.hero__visual {
    min-height: 360px;
    padding-top: 20px;
}

.match-card {
    width: 180px;
    height: 280px;
}


}



.logo__image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--soft);
    border: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(123,77,255,.18);
}

.logo__text {
    line-height: 1;
}
