:root {
    --ink: #111418;
    --muted: #596273;
    --line: #dce4ef;
    --soft: #f5f7fb;
    --white: #ffffff;
    --blue: #005bd8;
    --blue-dark: #073b84;
    --teal: #087c7a;
    --gold: #d79a20;
    --gold-soft: #fff7e5;
    --shadow: 0 18px 42px rgba(17, 20, 24, 0.13);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: 214px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.92rem;
}

.nav-links a:hover {
    color: var(--blue-dark);
    background: #eef5ff;
}

.nav-cta {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 8px 22px rgba(0, 91, 216, 0.22);
}

.nav-cta:hover {
    background: var(--blue-dark);
}

.hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background-image: url("../img/head-bg.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 19, 0.92), rgba(7, 12, 19, 0.72) 48%, rgba(0, 91, 216, 0.72)),
        linear-gradient(0deg, rgba(7, 12, 19, 0.20), rgba(7, 12, 19, 0.20));
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
    align-items: center;
    gap: 56px;
    padding: 86px 0 78px;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: 3.35rem;
    line-height: 1.05;
}

.hero-copy p {
    max-width: 660px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 900;
}

.hero-primary {
    background: var(--white);
    color: var(--blue-dark);
}

.hero-primary:hover {
    background: #edf5ff;
}

.hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-dating-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin-top: 28px;
}

.hero-dating-proof span {
    min-height: 86px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

.hero-dating-proof strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.signup-panel {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.signup-head {
    display: grid;
    gap: 4px;
    padding: 22px 24px 16px;
    background: linear-gradient(90deg, #ffffff, #eef5ff);
    border-bottom: 1px solid var(--line);
}

.signup-head span {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.signup-head strong {
    font-size: 1.35rem;
}

.signup-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 18px 0;
}

.signup-steps span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--soft);
    color: var(--muted);
    font-weight: 800;
    font-size: 0.82rem;
}

.signup-target {
    min-height: 180px;
    padding: 18px 20px 14px;
}

#formuser {
    width: 100%;
}

#formuser table {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 8px;
}

#formuser input,
#formuser select,
#formuser button,
#formuser .btn,
#formuser [type="submit"] {
    max-width: 100%;
}

#formuser input[type="text"],
#formuser input[type="email"],
#formuser input[type="password"],
#formuser input[type="number"],
#formuser select {
    min-height: 42px;
    border-radius: 6px;
    border: 1px solid var(--line);
    padding: 8px 10px;
    background: var(--white);
    color: var(--ink);
}

#formuser button,
#formuser input[type="submit"],
#formuser .submit,
#formuser .btn {
    border: 0;
    border-radius: 6px;
    min-height: 44px;
    padding: 10px 16px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

.signup-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 16px;
}

.signup-trust span {
    border-radius: 999px;
    background: #eef5ff;
    color: var(--blue-dark);
    padding: 6px 10px;
    font-weight: 800;
    font-size: 0.82rem;
}

.signup-note {
    margin: 0;
    padding: 14px 20px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.trust-band,
.dating-strip,
.section,
.profiles-section,
.bottom-cta {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.trust-band {
    transform: translateY(-34px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--line);
}

.trust-band div {
    min-height: 108px;
    padding: 20px;
    background: var(--white);
    display: grid;
    align-content: center;
    gap: 2px;
}

.trust-band strong {
    color: var(--blue-dark);
    font-size: 1.45rem;
}

.trust-band span {
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: 76px 0;
}

.section-white {
    background: var(--white);
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-soft {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head h2,
.feature-split h2,
.article-copy h2,
.conversation-grid h2,
.bottom-cta h2 {
    margin-bottom: 14px;
    font-size: 2.2rem;
    line-height: 1.12;
}

.section-head p,
.feature-split p,
.article-copy p,
.conversation-grid p {
    color: var(--muted);
    font-size: 1.04rem;
}

.card-grid,
.content-grid,
.angle-grid,
.dating-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card-grid-small {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.content-block,
.angle-card,
.dating-action-card,
.insight-panel,
.visual-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(17, 20, 24, 0.07);
}

.card {
    min-height: 190px;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 10px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: #a9c8f5;
    box-shadow: 0 16px 32px rgba(0, 91, 216, 0.14);
}

.card-kicker {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.card strong {
    font-size: 1.18rem;
    color: var(--blue-dark);
}

.card span:last-child {
    color: var(--muted);
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 42px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-list div {
    min-height: 92px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-list strong,
.visual-panel strong {
    display: block;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.feature-list span,
.visual-panel span {
    color: var(--muted);
}

.visual-panel {
    padding: 24px;
}

.visual-panel img {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 18px;
}

.dating-action-card {
    min-height: 188px;
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 10px;
}

.dating-action-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.dating-action-card strong {
    color: var(--blue-dark);
    font-size: 1.22rem;
}

.dating-action-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.narrative-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 42px;
    align-items: start;
}

.article-copy {
    max-width: 760px;
}

.insight-panel {
    padding: 24px;
    border-left: 4px solid var(--gold);
}

.insight-panel strong {
    display: block;
    color: var(--blue-dark);
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.insight-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.insight-panel li + li {
    margin-top: 8px;
}

.content-block,
.angle-card {
    min-height: 210px;
    padding: 24px;
}

.content-block h2,
.angle-card h3 {
    color: var(--blue-dark);
    font-size: 1.32rem;
    line-height: 1.2;
}

.content-block p,
.angle-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.steps-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.steps-list article {
    min-height: 110px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.steps-list article > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: #8b5b00;
    font-weight: 900;
}

.steps-list h3 {
    margin-bottom: 6px;
    color: var(--blue-dark);
}

.steps-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.dating-strip {
    transform: translateY(-28px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dating-strip a {
    min-height: 82px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(17, 20, 24, 0.08);
}

.dating-strip strong {
    display: block;
    color: var(--blue-dark);
}

.dating-strip span {
    color: var(--muted);
}

.profiles-section {
    padding: 76px 0;
}

.profiles-wrap {
    display: grid;
    gap: 18px;
}

.remote-profiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.member-carousel-panel {
    min-height: 250px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(17, 20, 24, 0.08);
}

.member-carousel-top {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #ffffff, #f2f7ff);
}

.member-carousel-top span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.member-carousel-top strong {
    color: var(--blue-dark);
}

#caruserf,
#caruserh {
    min-height: 156px;
    padding: 18px;
}

#caruserf,
#caruserh,
#caruserf > div,
#caruserh > div {
    text-align: center;
}

#caruserf img,
#caruserh img,
.remote-profiles img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 6px 18px rgba(17, 20, 24, 0.18);
}

#caruserf a,
#caruserh a {
    color: var(--blue-dark);
    font-weight: 800;
}

#caruserf table,
#caruserh table {
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 10px;
}

#caruserf td,
#caruserh td {
    padding: 8px;
    border-radius: var(--radius);
    background: #f8fbff;
    border: 1px solid #e8eef7;
}

.member-fallback {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.member-fallback.is-hidden {
    display: none;
}

.member-fallback article {
    min-height: 120px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.member-fallback strong {
    display: block;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.member-fallback span {
    color: var(--muted);
}

.conversation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 42px;
    align-items: center;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.inline-cta:hover {
    background: var(--blue-dark);
}

.chat-preview {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: var(--radius);
    background: #101418;
    box-shadow: var(--shadow);
}

.chat-bubble {
    max-width: 88%;
    padding: 13px 15px;
    border-radius: 14px;
    color: var(--white);
}

.chat-bubble.incoming {
    background: #2b3440;
    justify-self: start;
}

.chat-bubble.outgoing {
    background: var(--blue);
    justify-self: end;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.city-grid a {
    min-height: 86px;
    padding: 16px;
    border-radius: var(--radius);
    background: #f8fbff;
    border: 1px solid var(--line);
}

.city-grid a:hover {
    border-color: #a9c8f5;
    background: #eef5ff;
}

.city-grid strong {
    display: block;
    color: var(--blue-dark);
}

.city-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.city-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: stretch;
}

.map-shell {
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(17, 20, 24, 0.09);
    background: var(--white);
}

.map-shell iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.city-local-copy {
    min-height: 360px;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.city-local-copy h2 {
    font-size: 2rem;
    line-height: 1.15;
}

.city-local-copy p {
    color: var(--muted);
}

.local-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.local-tags span,
.pill-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef5ff;
    color: var(--blue-dark);
    font-weight: 800;
}

.pill-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-list details {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    min-height: 58px;
    padding: 16px 18px;
    color: var(--blue-dark);
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.bottom-cta {
    margin-top: 42px;
    margin-bottom: 76px;
    min-height: 160px;
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.bottom-cta h2 {
    margin-bottom: 0;
}

.bottom-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 900;
}

.site-footer {
    background: #101418;
    color: var(--white);
    padding: 56px 16px 24px;
}

.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.footer-grid img {
    width: 180px;
    height: auto;
    margin-bottom: 14px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.footer-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-align: center;
}

.ptprelinker-overlay.ptprelinker-show {
    background: rgba(10, 14, 20, 0.72) !important;
    backdrop-filter: blur(14px) !important;
}

.ptprelinker--box.ptprelinker-show {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    color: var(--ink) !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-inner,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-inner {
    width: min(620px, calc(100% - 32px)) !important;
    max-width: 620px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: var(--radius) !important;
    background: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.76) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30) !important;
    color: var(--ink) !important;
    overflow: hidden !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-content,
.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-inner__content,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-content,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-inner__content {
    width: 100% !important;
    color: var(--ink) !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-content,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-content {
    padding: 30px 28px !important;
    border-radius: 0 !important;
    background: var(--white) !important;
    border: 0 !important;
    box-shadow: none !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-inner__datas,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-inner__datas {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    color: var(--ink) !important;
    background: transparent !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-infos,
.ptprelinker--box.ptprelinker-show .ptprelinker-infos {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    color: var(--ink) !important;
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-shadow: none !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-content-inner__buttons,
.ptprelinker--box.ptprelinker-show .ptprelinker-content-inner__buttons {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 22px !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-button,
.ptprelinker--box.ptprelinker-show .ptprelinker-button {
    min-width: 136px !important;
    min-height: 50px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    border: 0 !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-button-wrong,
.ptprelinker--box.ptprelinker-show .ptprelinker-button-wrong {
    background: #eef1f5 !important;
    color: #172033 !important;
    border: 1px solid #d7e0ec !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-button-success,
.ptprelinker--box.ptprelinker-show .ptprelinker-button-success {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.ptprelinker--box.ptprelinker-disclaimer .ptprelinker-button-success:hover,
.ptprelinker--box.ptprelinker-show .ptprelinker-button-success:hover {
    background: var(--blue-dark) !important;
}

@media (max-width: 1060px) {
    .nav-wrap {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-inner,
    .feature-split,
    .narrative-grid,
    .conversation-grid,
    .city-focus-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 28px;
    }

    .card-grid,
    .content-grid,
    .angle-grid,
    .dating-action-grid,
    .card-grid-small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        position: static;
    }

    .nav-wrap {
        justify-content: space-between;
        gap: 10px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        white-space: nowrap;
    }

    .nav-cta {
        margin-left: auto;
    }

    h1 {
        font-size: 2.45rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        width: min(100% - 24px, 1180px);
        padding: 56px 0 58px;
    }

    .hero-copy p {
        font-size: 1.05rem;
    }

    .hero-dating-proof,
    .trust-band,
    .dating-strip,
    .remote-profiles,
    .member-fallback,
    .card-grid,
    .content-grid,
    .angle-grid,
    .dating-action-grid,
    .card-grid-small,
    .city-grid {
        grid-template-columns: 1fr;
    }

    .trust-band {
        transform: none;
        margin-top: 18px;
    }

    .dating-strip {
        transform: none;
        margin-top: 18px;
    }

    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-head h2,
    .feature-split h2,
    .article-copy h2,
    .conversation-grid h2,
    .bottom-cta h2 {
        font-size: 1.75rem;
    }

    .bottom-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .bottom-cta a {
        width: 100%;
    }

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

@media (max-width: 460px) {
    .nav-links {
        gap: 4px;
    }

    .nav-links a,
    .nav-cta {
        font-size: 0.86rem;
        padding: 7px 9px;
    }

    .brand img {
        width: 190px;
    }

    h1 {
        font-size: 2.05rem;
    }

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

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