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

:root {
    --bg-color: #fffefd;
    --black: #000000;
    --white: #ffffff;
    --gray: #d9d9d9;
    --font-family: 'PP Neue Montreal', sans-serif;
    --vh: 1vh; /* Fallback for JavaScript-calculated viewport height */
}
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('/static-pages/curators/font/PPNeueMontreal-Medium.eot');
    src: url('/static-pages/curators/font/PPNeueMontreal-Medium.eot?#iefix')
            format('embedded-opentype'),
        url('/static-pages/curators/font/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('/static-pages/curators/font/PPNeueMontreal-Medium.woff') format('woff'),
        url('/static-pages/curators/font/PPNeueMontreal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    background-color: var(--white);
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 28px 0;
    color: var(--black);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-text,
.header.scrolled .nav-menu a {
    color: var(--black);
}

.header-container {
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1440px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wordmark {
    height: 25px;
}

.wordmark svg,
.wordmark img {
    width: 100%;
    height: 25px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 29.355px;
    font-weight: 400;
    letter-spacing: -0.5871px;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    position: absolute;
    right: 30px;
    transition: right 0.3s ease;
}

.header.scrolled .nav-menu {
    right: 160px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--black);
}

.nav-menu a:hover {
    opacity: 0.8;
}

.header-button {
    background-color: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    position: absolute;
    right: 30px;
    border-radius: 12px;
    text-decoration: none;
}

.header.scrolled .header-button {
    opacity: 1;
    visibility: visible;
    background-color: var(--black);
    color: var(--white);
}

.header-button:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid var(--gray);
    width: 100%;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1440px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-logo .wordmark img {
    filter: brightness(0);
}

.footer-logo-text {
    color: var(--black);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}
.social {
    display: flex;
    gap: 20px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .footer {
        padding: 20px 0;
    }
    .footer-container {
        padding: 0 40px;
    }
    .footer-links {
        gap: 10px;
    }
    .footer-links a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 32px;
    }
    .footer-logo {
        display: none;
    }

    .footer-links {
        text-align: center;
        gap: 20px;
        justify-self: center;
    }
    .footer-links a {
        font-size: 16px;
    }
    .mission-card:last-child {
        border-top: 1px solid #f2dcca;
    }
}

/* Changed styles for internal page cantent */

/* Hero Section */
.hero {
    position: relative;
    margin: 97px auto;
    padding: 50px;
    border-radius: 32px;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    max-width: 1440px;
}

.hero-background {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    overflow: hidden;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 25.417%),
        linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 32px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 795px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.hero-title {
    font-size: 82px;
    font-weight: 500;
    line-height: 74px;
    color: #ffffff;
    margin: 0;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 27px 56px;
    border-radius: 100px;
    border: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 40px;
    font-size: 24px;
}

/* Dating Section */
.dating-section {
    margin: 100px calc(25% + 5px) 0 calc(25% + 4px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.section-title-large {
    font-size: 56px;
    font-weight: 500;
    line-height: 56px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.section-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.phone-images {
    position: relative;
    max-width: 600px;
    margin: 60px auto 0;
    width: 100%;
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
}

.phone-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
}

.live-indicator {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
}

.live-dot {
    width: 12px;
    height: 12px;
    background-color: #000000;
    border-radius: 50%;
    display: inline-block;
}

.live-date {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
}

/* Features Section */
.features-section {
    margin: 100px 40px 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    opacity: 0.48;
    margin: 0;
}

/* Membership Section */
.membership-section {
    margin: 100px calc(25% + 30px) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Steps Section */
.steps-section {
    margin: 100px 40px 0;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.steps-container {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--black);
}

.timeline-dot.checked::after {
    content: '✓';
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
}

.timeline-dot.checked {
    background-color: var(--black);
}

.timeline-line {
    width: 1px;
    background-color: #000000;
    flex: 1;
    min-height: 92px;
}

.timeline-item:nth-child(2) .timeline-line {
    min-height: 136px;
}

.timeline-item:nth-child(3) .timeline-line {
    min-height: 164px;
}

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 405px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.step-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    opacity: 0.48;
    margin: 0;
}

.step-text-bold {
    opacity: 1;
}

.step-text-bold strong {
    font-weight: 700;
}

.steps-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 478px;
}

.steps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Ready Section */
.ready-section {
    margin: 100px calc(25% + 30px) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.section-text-small {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
    text-align: center;
    margin: 0;
    max-width: 60%;
}

/* CTA Section */
.cta-section {
    position: relative;
    margin-top: 100px;
    height: 1100px;
    overflow: hidden;
    background-color: #000000;
}

.cta-background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1439px;
    height: 1100px;
    background-color: #000000;
}

.cta-images {
    position: absolute;
    inset: 0;
}

.cta-image {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    object-position: 50% 50%;
}

.cta-image-1 {
    width: 145px;
    height: 217px;
    right: 5vw;
    top: 536px;
    border-radius: 16px;
}

.cta-image-2 {
    width: 193px;
    height: 289px;
    left: -47px;
    top: 556px;
    border-radius: 16px;
}

.cta-image-3 {
    width: 285px;
    height: 427px;
    left: 20vw;
    top: 745px;
    border-radius: 24px;
}

.cta-image-4 {
    width: 258px;
    height: 387px;
    left: 18vw;
    top: -110px;
    border-radius: 24px;
}

.cta-image-5 {
    width: 208px;
    height: 312px;
    right: 22vw;
    top: 26px;
    border-radius: 20px;
}

.cta-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    z-index: 10;
}

.cta-title {
    font-size: 82px;
    font-weight: 500;
    line-height: 74px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0 10%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
        line-height: 56px;
    }

    .section-title-large {
        font-size: 48px;
        line-height: 48px;
    }

    .cta-title {
        font-size: 64px;
        line-height: 56px;
    }

    .steps-section {
        flex-direction: column;
        align-items: center;
    }

    .steps-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        margin: 100px 20px 0;
        padding: 30px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 44px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .section-title-large {
        font-size: 36px;
        line-height: 40px;
    }

    .features-section {
        flex-direction: column;
        align-items: center;
    }

    .steps-section {
        flex-direction: column;
    }

    .steps-container {
        flex-direction: column;
        width: 100%;
    }

    .steps-timeline {
        display: none;
    }

    .timeline-line {
        width: auto;
        height: 1px;
        min-width: 92px;
    }

    .cta-title {
        font-size: 36px;
        line-height: 40px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 20px;
    }

    .dating-section,
    .ready-section,
    .membership-section {
        margin-top: 80px;
        margin-left: 30px;
        margin-right: 30px;
    }

    .section-text-small {
        max-width: none;
    }

    .cta-section {
        height: 700px;
    }

    .cta-image-1 {
        top: auto;
        bottom: 16vh;
        right: -4vw;
    }

    .cta-image-2 {
        top: auto;
        bottom: 9vh;
        height: auto;
    }

    .cta-image-3 {
        width: 150px;
        height: auto;
        left: 32vw;
        bottom: -13vw;
        top: auto;
    }

    .cta-image-4 {
        width: 160px;
        height: auto;
        left: 5vw;
    }

    .cta-image-5 {
        width: 150px;
        height: auto;
        right: 10vw;
        top: 6px;
    }
}
