@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,600;1,9..144,700&family=Outfit:wght@500;600;700&family=Sora:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Sora', 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-wrapper {
    overflow-x: hidden;
}

/* ── Header ── */
.site-header {
    margin-bottom: 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-header img {
    width: auto;
    height: 50px;
    max-width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions a {
    text-decoration: none;
    color: #ff007f;
    font-size: 16px;
}

.menu {
    display: none;
}

.menu-items {
    display: flex;
    flex-direction: column;
    background: #d9188e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}

.menu-items.active {
    left: 0;
}

.menu-items a {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background: #333;
}

.pc-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pc-menu a {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    color: #d9188e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.btn-header-login,
.pc-menu .btn-header-login {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    padding: 7px 20px;
    border-radius: 50px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-header-login:hover,
.pc-menu .btn-header-login:hover {
    color: #fff;
    opacity: 0.85;
    transform: translateY(-1px);
}

.site-header .threecupid-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header .threecupid-logo-text {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 2.6rem;
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1;
    padding: 0 6px 2px 2px;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Main content wrapper ── */
.main-content {
    padding: 48px 0 24px;
}

/* ── Intro / Hero section ── */
.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 96px;
}

.intro-section .image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.intro-section .image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.13);
}

.intro-section .text {
    flex: 1;
    text-align: left;
    min-width: 280px;
}

.intro-section h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1rem;
    line-height: 1.82;
    color: #555;
    margin-bottom: 14px;
}

.intro-section p:last-of-type {
    margin-bottom: 0;
}

/* tagline below buttons */
.intro-tagline {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #bbb !important;
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}

.intro-tagline::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #ddd;
    flex-shrink: 0;
}

/* ── Buttons ── */
.join-now-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-join-now {
    display: inline-block;
    padding: 14px 44px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(217, 24, 142, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-join-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 24, 142, 0.5);
    opacity: 0.92;
}

.btn-join-now--light {
    background: #fff;
    color: #d9188e;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.btn-join-now--light:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.btn-login-outline {
    background: transparent;
    color: #d9188e;
    box-shadow: none;
    border: 2px solid #d9188e;
}

.btn-login-outline:hover {
    background: rgba(217, 24, 142, 0.06);
    box-shadow: none;
}

/* ── Shared playline heading ── */
.threecupid-playline {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-align: center;
    color: #d9188e;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .threecupid-playline {
        background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 45%, #c4107a 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

/* ── About Us / Highlight section ── */
.highlight-section {
    margin: 24px 0 80px;
}

.highlight-section h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 700;
    font-optical-sizing: auto;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 40px;
    color: #d9188e;
}

.highlight-section h2.threecupid-playline,
.title h2.threecupid-playline {
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    letter-spacing: -0.04em;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.highlight-section .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 52px;
}

.highlight-section .content:nth-child(even) {
    flex-direction: row-reverse;
}

.highlight-section .text {
    flex: 1;
    text-align: left;
    padding: 0 4px;
    min-width: 260px;
}

.highlight-section .image {
    flex: 1;
    text-align: center;
    min-width: 260px;
}

.highlight-section .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* About Us sub-headings */
.about-subheading {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.highlight-section .text p {
    font-size: 1rem;
    line-height: 1.82;
    color: #555;
    margin-bottom: 14px;
}

.highlight-section .text p:last-child {
    margin-bottom: 0;
}

/* ── Why 3Cupid title ── */
.title {
    text-align: center;
    margin-bottom: 32px;
    color: #d9188e;
}

.title h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    font-optical-sizing: auto;
    letter-spacing: -0.03em;
    margin: 0;
    color: inherit;
}

/* ── Features grid ── */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 80px;
}

.features-section .feature {
    padding: 32px 26px 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(217, 24, 142, 0.09);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.features-section .feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 36px rgba(217, 24, 142, 0.14);
}

.feature-icon {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ── Stats (if used) ── */
.stats-section {
    text-align: center;
    background: #f8f8f8;
    padding: 20px;
    margin-top: 20px;
}

.stats-section .stat {
    display: block;
    margin: 10px;
    font-size: 18px;
}

/* ── CTA Section ── */
.cta-section {
    margin-top: 0;
    padding: 72px 20px 80px;
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(217, 24, 142, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255, 45, 106, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.1rem;
}

.cta-headline {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff80c0, #ff2d6a, #d9188e);
    -webkit-background-clip: text;
    background-clip: text;
    color: #ff80c0;
    margin-bottom: 1.5rem;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .cta-sub {
        color: transparent;
    }
}

.cta-body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.75rem;
}

.cta-perks {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
}

.cta-perks li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-footnote {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

/* ── Footer ── */
.site-footer {
    background: #0d0009;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* top section with columns */
.footer-main {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px 64px;
    align-items: start;
}

/* brand column */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link {
    display: inline-block;
    line-height: 1;
}

.footer-logo-link img {
    height: 42px;
    width: auto;
    max-width: 100%;
    /* white logo on dark bg — invert if logo is dark */
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover img {
    opacity: 1;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
}

/* social icons */
.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.footer-social__link svg {
    flex-shrink: 0;
}

.footer-social__link--facebook:hover {
    background: #ff2d6a;
    border-color: #ff2d6a;
    color: #fff;
    transform: translateY(-2px);
}

/* link columns */
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: #ff2d6a;
}

/* bottom bar */
.footer-bottom {
    padding: 22px 0;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    letter-spacing: 0.02em;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-copy a:hover {
    color: #ff2d6a;
}

/* ── Footer responsive ── */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .footer-main {
        padding: 52px 0 40px;
    }

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

    .footer-col--brand {
        grid-column: auto;
    }
}

/* ── Dating Landing Pages (Threesome, Unicorn, Cuckold, etc.) ── */
.dating-page {
    padding-bottom: 0;
}

/* Hero */
.dating-hero {
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    padding: 96px 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dating-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 40%, rgba(217, 24, 142, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 60%, rgba(255, 45, 106, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.dating-hero .container {
    position: relative;
}

.dating-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 20px;
}

.dating-hero-headline {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 800;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.07;
    color: #fff;
    margin-bottom: 22px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dating-hero-sub {
    font-size: clamp(0.97rem, 2vw, 1.1rem);
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.6);
    max-width: 660px;
    margin: 0 auto 36px;
}

.dating-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.dating-hero-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

/* body */
.dating-body {
    padding: 80px 0 96px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.dating-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d9188e;
    margin-bottom: 14px;
}

.dating-label--light {
    color: rgba(255, 255, 255, 0.45);
}

/* wide text block */
.dating-section-inner--wide {
    max-width: 820px;
    margin: 0 auto;
}

.dating-section-inner--wide h2,
.dating-section-header h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.dating-section-h2--light {
    color: #fff !important;
}

.dating-section-inner--wide p,
.dating-section-header p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.dating-section-inner--wide p:last-child {
    margin-bottom: 0;
}

/* section header (centered) */
.dating-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

/* cards grid */
.dating-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dating-card {
    padding: 32px 28px;
    border-radius: 18px;
    border: 1px solid rgba(217, 24, 142, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(217, 24, 142, 0.13);
}

.dating-card-icon {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 14px;
}

.dating-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.dating-card p {
    font-size: 0.87rem;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

/* how it works — dark */
.dating-section--dark {
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    border-radius: 28px;
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
}

.dating-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(217, 24, 142, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.dating-section--dark .dating-section-header {
    position: relative;
}

.dating-section--dark .dating-section-header h2 {
    color: #fff;
}

.dating-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-bottom: 48px;
}

.dating-step {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.dating-step-num {
    display: block;
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.dating-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.dating-step p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.dating-section-cta {
    text-align: center;
    position: relative;
}

/* why grid */
.dating-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 48px;
}

.dating-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.dating-why-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.dating-why-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.dating-why-item p {
    font-size: 0.88rem;
    line-height: 1.72;
    color: #666;
    margin: 0;
}

/* tips */
.dating-tips-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.dating-tip {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.dating-tip:last-child {
    border-bottom: none;
}

.dating-tip-num {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
    width: 40px;
    padding-top: 2px;
}

.dating-tip strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.dating-tip p {
    font-size: 0.9rem;
    line-height: 1.78;
    color: #666;
    margin: 0;
}

/* FAQ */
.dating-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

.dating-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dating-faq-item summary {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 22px 36px 22px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.18s ease;
}

.dating-faq-item summary::-webkit-details-marker {
    display: none;
}

.dating-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: #d9188e;
    transition: transform 0.2s ease;
    line-height: 1;
}

.dating-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.dating-faq-item[open] summary {
    color: #d9188e;
}

.dating-faq-item p {
    font-size: 0.92rem;
    line-height: 1.82;
    color: #555;
    padding: 0 36px 22px 0;
    margin: 0;
}

/* ── Geo sections ── */
.dating-geo-wrap {
    background: #f7f3f6;
    padding: 72px 0 80px;
    border-top: 1px solid rgba(217, 24, 142, 0.08);
}

.dating-geo-block {
    margin-bottom: 56px;
}

.dating-geo-block:last-child {
    margin-bottom: 0;
}

.dating-geo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d9188e;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(217, 24, 142, 0.15);
}

.dating-geo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.dating-geo-link {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 6px 16px;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dating-geo-link:hover {
    background: #d9188e;
    color: #fff;
    border-color: #d9188e;
}

/* ── Dating page responsive ── */
@media (max-width: 960px) {
    .dating-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dating-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dating-section--dark {
        padding: 52px 32px;
    }

    .dating-why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .dating-hero {
        padding: 64px 0 56px;
    }

    .dating-body {
        gap: 64px;
        padding: 56px 0 72px;
    }

    .dating-cards-grid {
        grid-template-columns: 1fr;
    }

    .dating-section--dark {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .dating-geo-wrap {
        padding: 52px 0 60px;
    }
}

/* ── About Us page ── */
.about-page {
    padding-bottom: 0;
}

.about-hero {
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    padding: 96px 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(217, 24, 142, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255, 45, 106, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
}

.about-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 20px;
}

.about-hero-headline {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.07;
    color: #fff;
    margin-bottom: 24px;
}

.about-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    max-width: 640px;
    margin: 0 auto;
}

/* body wrapper */
.about-body {
    padding: 80px 0 96px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

/* shared label */
.about-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d9188e;
    margin-bottom: 14px;
}

.about-label--light {
    color: rgba(255, 255, 255, 0.45);
}

/* two-column sections */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-section--reverse {
    direction: rtl;
}

.about-section--reverse > * {
    direction: ltr;
}

.about-section-text h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.about-section-text p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

/* stats block */
.about-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 100%);
    border-radius: 24px;
    padding: 48px 40px;
    overflow: hidden;
    position: relative;
}

.about-stat-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 24, 142, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.about-stat {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.about-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-stat-number {
    display: block;
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(105deg, #d9188e 0%, #ff2d6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

.about-stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* values list */
.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-values-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-values-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-values-list strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.about-values-list p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* connections grid */
.about-connections {
    text-align: center;
}

.about-connections-header {
    max-width: 640px;
    margin: 0 auto 48px;
}

.about-connections-header h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.about-connections-header p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #555;
}

.about-connections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.about-connection-card {
    padding: 32px 28px;
    border-radius: 18px;
    border: 1px solid rgba(217, 24, 142, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-connection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(217, 24, 142, 0.13);
}

.about-connection-card--more {
    background: linear-gradient(135deg, #fdf0f7 0%, #fff4fb 100%);
    border-color: rgba(217, 24, 142, 0.18);
}

.about-connection-icon {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 14px;
}

.about-connection-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.about-connection-card p {
    font-size: 0.87rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* promise section */
.about-promise {
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    border-radius: 28px;
    padding: 72px 56px;
    position: relative;
    overflow: hidden;
}

.about-promise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(217, 24, 142, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-promise-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-promise-inner h2 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    font-style: italic;
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 24px;
}

.about-promise-inner p {
    font-size: 0.97rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 18px;
}

.about-quote {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    border-left: 3px solid #d9188e;
    padding: 16px 0 16px 28px;
    margin: 32px 0;
    text-align: left;
}

.about-promise-cta {
    margin-top: 36px;
}

/* responsive */
@media (max-width: 960px) {
    .about-section,
    .about-section--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

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

    .about-promise {
        padding: 52px 32px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 64px 0 56px;
    }

    .about-body {
        gap: 64px;
        padding: 56px 0 72px;
    }

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

    .about-stat-stack {
        padding: 36px 28px;
    }

    .about-promise {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .about-quote {
        padding-left: 20px;
    }
}

/* ── Safety Tips page ── */
.safety-page {
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.safety-hero {
    text-align: center;
    margin-bottom: 64px;
}

.safety-intro {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

.safety-section {
    margin-bottom: 56px;
}

.safety-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d9188e;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(217, 24, 142, 0.15);
}

.safety-section-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.safety-card {
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.safety-card:hover {
    box-shadow: 0 6px 28px rgba(217, 24, 142, 0.1);
}

.safety-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.safety-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px;
}

.safety-card p:last-child {
    margin-bottom: 0;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.safety-list li {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.safety-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d9188e;
    font-size: 0.6rem;
    top: 5px;
}

.safety-emergency {
    margin-top: 56px;
    padding: 48px 40px;
    background: linear-gradient(135deg, #1a0a12 0%, #3b0626 45%, #1d0418 100%);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.safety-emergency::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(217, 24, 142, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.safety-emergency-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
    position: relative;
}

.safety-emergency h3 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 16px;
    position: relative;
}

.safety-emergency p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 12px;
    position: relative;
}

.safety-emergency p:last-of-type {
    margin-bottom: 28px;
}

.safety-emergency .btn-join-now {
    position: relative;
}

@media (max-width: 768px) {
    .safety-card {
        padding: 22px 20px;
    }

    .safety-emergency {
        padding: 36px 24px;
    }
}

/* ── Legal pages ── */
body.threecupid-legal .highlight-section .text {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
}

body.threecupid-legal .highlight-section .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

body.threecupid-legal .highlight-section .text th,
body.threecupid-legal .highlight-section .text td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    vertical-align: top;
}

body.threecupid-legal .highlight-section .text h1 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    font-optical-sizing: auto;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #222;
}

body.threecupid-legal .highlight-section .text h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 1.5rem 0 0.5rem;
    color: #292929;
}

body.threecupid-legal .highlight-section .text p,
body.threecupid-legal .highlight-section .text li {
    font-weight: 400;
}

/* ── Responsive: tablet ── */
@media (max-width: 960px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Responsive: mobile ── */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pc-menu {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .menu {
        display: block;
    }

    .intro-section {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 56px;
    }

    .intro-section .text {
        text-align: center;
    }

    .join-now-wrap {
             justify-content: center;
         }

         .hero-login {
             display: none;
         }

    .intro-tagline {
        justify-content: center;
    }

    .intro-tagline::before {
        display: none;
    }

    .highlight-section .content {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .highlight-section .content:nth-child(even) {
        flex-direction: column;
    }

    .highlight-section .image {
        text-align: center;
    }

    .highlight-section .text {
        text-align: center;
    }

    .about-subheading {
        text-align: center;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-section {
        padding: 56px 24px 64px;
    }

    .cta-perks {
        text-align: left;
        width: 100%;
    }

    .stats-section .stat {
        font-size: 16px;
    }
}
