@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Inter:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --brand-color: #ff4d00;
    /* Electric Orange (from aivuala logo) */
    --brand-orange: #ff4d00;
    --brand-gradient: linear-gradient(135deg, #ff4d00 0%, #ff7a00 100%);
    --accent-color: var(--brand-color);
    --secondary-text: #666666;
    --border-color: #f1f1f1;
    --border-radius: 24px;
    --btn-radius: 50px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-hand: 'Caveat', cursive;
    --spacing-unit: 1rem;
    --max-width: 1200px;
    --creator-orange: #ff4d00;
}

.handwritten-only {
    font-family: var(--font-hand);
    color: #ff0000;
    /* Vibrant red restored */
    font-size: 1.8rem;
    position: absolute;
    top: -1.8rem;
    left: -0.6rem;
    transform: rotate(-12deg);
    /* Slightly more rotated */
    pointer-events: none;
    font-weight: 700;
    text-shadow: 1px 1px 0px rgba(255, 0, 0, 0.1);
    opacity: 0.95;
    white-space: nowrap;
    z-index: 10;
}

.tag-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.tag-wrapper .tag {
    margin-bottom: 0 !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    padding-top: 64px;
    /* Offset for sticky header */
}

/* Header & Navigation */
.main-header,
.creator-header {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.header-hidden,
.creator-header.header-hidden {
    transform: translateY(-100%);
}

.logo-link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn {
    text-decoration: none;
    color: var(--secondary-text);
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-btn:hover {
    color: var(--text-color);
}

.lang-btn.active {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
}

.lang-separator {
    color: #ccc;
    font-weight: 300;
}

@media (max-width: 768px) {
    .lang-selector {
        margin-right: 1rem;
    }
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align contents to the top */
    align-items: flex-start;
    /* Align items to the left */
    padding-top: 5rem;
    /* Position below the logo */
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-overlay.active {
    transform: translateX(0);
}

.nav-links {
    list-style: none;
    text-align: left;
    width: 100%;
}

.nav-links li {
    margin: 0;
    padding: 1.5rem 2rem;
    /* Vertical 1.5rem, Horizontal 2rem to match logo */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Thin gray line */
    width: 100%;
}

/* Ensure full clickable area and alignment */
.nav-links li a {
    display: block;
}

.nav-links a {
    font-size: 1.5rem;
    font-weight: 400;
    /* No bold weight as per request */
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.5;
}

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Layout */
section {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-section {
    padding-top: 3rem;
    /* Reduced from 8rem to tighten the gap between hero and concept */
}

/* Animations */
@keyframes iconGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px transparent);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px var(--brand-orange));
        color: var(--brand-orange);
    }
}

.icon-shine {
    animation: iconGlow 2.5s ease-in-out infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* UI Elements */
h1 {
    font-size: clamp(2.4rem, 10vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.heartbeat-text {
    display: inline-block;
    animation: heartbeatText 2.5s ease-in-out infinite;
}

@keyframes heartbeatText {

    0%,
    100% {
        color: inherit;
        transform: scale(1);
    }

    15% {
        color: #e60000;
        transform: scale(1.03);
    }

    30% {
        color: inherit;
        transform: scale(1);
    }

    45% {
        color: #ff1a1a;
        transform: scale(1.02);
    }

    60% {
        color: inherit;
        transform: scale(1);
    }
}

h2 {
    font-size: clamp(1.6rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1.5px solid var(--accent-color);
    background: var(--bg-color);
    border-radius: var(--btn-radius);
    text-align: center;
}

.btn-black {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
    box-shadow: 0 4px 14px 0 rgba(82, 17, 212, 0.3);
}

.btn-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 17, 212, 0.4);
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: #fff;
}

@media (max-width: 768px) {

    .btn-hero-men,
    .btn-hero-women {
        width: 95vw;
        max-width: 550px;
        padding: 1.15rem 2.5rem;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content p {
    color: #4a4a4a;
    /* Soft dark gray for contrast */
    font-weight: 500;
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(255, 255, 255, 0.7);
    /* Stronger glow to isolate from background */
    letter-spacing: -0.01em;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #fff;
}

.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.hero-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollBackground 30s linear infinite;
    padding: 0 1rem;
}

.hero-carousel-track img {
    height: 500px;
    width: auto;
    border-radius: 20px;
    object-fit: cover;
    filter: blur(3px) grayscale(30%);
    opacity: 0.25;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 768px) {
    .hero-carousel-track img {
        height: 350px;
    }
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}


/* Grids & Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .content-block {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits-list li::before {
    content: '→';
    font-weight: 800;
}

/* Form Styles */
.form-container {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.25rem;
}

input[type="email"],
input[type="text"],
select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    font-size: 1rem;
    background: #fff;
    border-radius: calc(var(--border-radius) / 1.5);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

/* Avatar Showcase */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.avatar-card {
    aspect-ratio: 2/3;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}

.avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.avatar-card:hover img {
    transform: scale(1.05);
}

.avatar-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
}

/* Specialty grid for creator section to prioritize the video column and expand the form */
@media (min-width: 768px) {
    .creator-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 3.5rem;
        align-items: flex-start;
        padding-top: 4rem;
    }

    /* Form container: properly sized */
    .creator-grid .form-container {
        margin-top: 0 !important;
        max-width: 440px;
        width: 100%;
        margin-left: 0;
        padding: 2rem !important;
        position: relative;
        z-index: 2;
        /* Lower z-index so tags (z-index: 10) stay on top */
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .intro-detail {
        font-size: 0.85rem;
    }

    .form-card h3 {
        font-size: 1.75rem;
    }

    .form-card p {
        font-size: 0.95rem;
    }
}

/*** Early Access Section Styles ***/
@keyframes milkyGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Typing effect for Early Access */
#early-access-typewriter {
    color: inherit;
    /* Same color as the rest of the text */
}

.blinking-cursor {
    font-weight: 300;
    color: inherit;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#early-access {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
    /* Subtle overlap for better transition */
}

.early-access-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, #fafafa, #f3e8ff, #fff0e5, #ffffff);
    background-size: 400% 400%;
    animation: milkyGradient 15s ease infinite;
    z-index: 0;
    opacity: 0.8;
}

/* Mask to fade from the previous section's color (#fafafa) */
#early-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, #fafafa, transparent);
    z-index: 1;
}

.pricing-card-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.05);
}

.pricing-card-founder {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 255, 0.95) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.founder-badge {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.creator-showcase {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    /* Let grid control width */
    max-width: 420px;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.creator-video-container {
    flex: 1;
    width: 420px;
    /* Fixed anchor width for the relative container */
    max-width: 100%;
    aspect-ratio: 9/16;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    z-index: 1;
}

.creator-video-container video {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22);
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
    object-position: top center;
}

.benefits-column {
    position: absolute;
    right: -8rem;
    /* Pushing labels outside the video by about 1/3, keeping 2/3 inside */
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    width: auto;
}

.creator-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    pointer-events: auto;
    align-items: flex-end;
}

.point-item {
    background: white;
    padding: 0.75rem 1.4rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a;
    box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.12);
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.point-item:hover {
    transform: translateX(-15px) scale(1.05);
    /* Interactive pop */
    box-shadow: 15px 25px 50px rgba(0, 0, 0, 0.15);
}

.point-item.has-icon {
    background: #fffbfa;
    border-color: #fee5d9;
    color: var(--brand-orange);
}

.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Tablet & intermediate screens - Stack video and form */
@media (max-width: 1000px) and (min-width: 769px) {
    .creator-grid {
        grid-template-columns: 1fr !important;
        /* Stack vertically early to prevent squeezing */
        gap: 3rem;
        justify-items: center;
        /* Center everything */
    }

    .creator-showcase {
        margin: 0 auto;
    }

    .creator-grid .form-container {
        padding: 2.5rem;
        max-width: 600px;
        /* Let it breathe when stacked */
    }

    .benefits-column {
        right: -2rem;
        /* Pull tags slightly closer when screen shrinks */
    }
}

@media (max-width: 768px) {
    .creator-showcase {
        flex-direction: row;
        justify-content: flex-start;
        padding-right: 0;
        margin-top: 3.5rem;
        width: 100%;
        max-width: 100%;
        gap: 0;
        overflow: visible;
    }

    .creator-video-container {
        flex: none;
        width: 65%;
        max-width: 280px;
        margin-left: 0;
        z-index: 1;
    }

    .benefits-column {
        position: absolute;
        left: 55%;
        /* Mobile special overlap */
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        max-width: 55%;
        z-index: 10;
        pointer-events: none;
    }

    .creator-points {
        gap: 0.75rem;
        pointer-events: auto;
        align-items: center;
    }

    .point-item {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.15);
        margin: 0;
        border-radius: 100px;
        white-space: nowrap;
    }

    .creator-section {
        padding: 4rem 1.5rem !important;
        /* Reverted to more balanced padding */
    }

    /* GLOBAL COMPACT FORMS & MODALS ON MOBILE */
    .form-container,
    .modal-content,
    .form-card {
        padding: 1.5rem 1.25rem !important;
    }

    .form-container h3,
    .modal-content h3,
    .form-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .form-container p,
    .modal-content p,
    .form-card p {
        font-size: 0.875rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.4 !important;
    }

    .form-group {
        margin-bottom: 1rem !important;
    }

    .form-group input[type="email"],
    .form-group input[type="text"],
    .form-group select,
    .input-with-icon input {
        padding: 0.85rem 1rem !important;
        font-size: 16px !important;
        /* Prevents auto-zoom on iOS */
        border-radius: 10px !important;
    }

    /* Special case for inputs with icons */
    .input-with-icon input {
        padding-left: 3rem !important;
    }

    .input-with-icon svg {
        left: 1rem !important;
        width: 18px !important;
    }

    .form-group label,
    .checkbox-group label {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }

    .form-container .btn,
    .modal-content .btn,
    .form-card .btn {
        padding: 0.85rem 1.5rem !important;
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
    }

    /* COMPACT DETAILED CARDS IN CREATOR SECTION */
    .creator-benefits-detailed {
        padding: 2rem 1rem !important;
    }

    .creator-benefits-detailed>div:last-of-type {
        gap: 1rem !important;
        grid-template-columns: 1fr !important;
    }

    .creator-benefits-detailed>div:last-of-type>div {
        padding: 1.5rem 1.25rem !important;
        border-radius: 20px !important;
    }

    .creator-benefits-detailed h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
    }

    .creator-benefits-detailed p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .creator-benefits-detailed div[style*="width: 56px"] {
        width: 42px !important;
        height: 42px !important;
        border-radius: 12px !important;
        margin-bottom: 1rem !important;
    }

    .creator-benefits-detailed div[style*="width: 56px"] svg {
        width: 22px !important;
        height: 22px !important;
    }
}

.currency-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--brand-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Lab Section */
.lab-section {
    text-align: center;
    background: #0a0515;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lab-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    filter: blur(150px);
    opacity: 0.1;
    transform: translate(-50%, -50%);
}

.lab-section h2,
.lab-section p {
    color: #fff;
}

.lab-mockup {
    width: 100%;
    max-width: 800px;
    margin: 4rem auto;
    border: 1px solid #333;
    padding: 1rem;
    background: #000;
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--secondary-text);
    letter-spacing: 0.05em;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    section {
        padding: 6rem 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
    }

    .hero-cta .btn {
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        max-width: 300px;
        width: 100%;
        min-width: 0;
        /* Allow shrinking to prevent overflow */
        white-space: nowrap;
    }

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


/* Card Navigation (Internal Buttons) */
.ai-profile-card {
    position: relative;
    isolation: isolate;
    pointer-events: auto !important;
    /* Re-enable clics for cards */
}

.card-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer !important;
    z-index: 100;
    transition: opacity 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    /* Hidden by default */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Show ONLY on the active card */
.ai-profile-card.active>.card-nav-btn {
    opacity: 1;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    /* Extremely high to beat any overlay */
}

.card-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.card-nav-btn:active {
    transform: translateY(-50%) scale(0.92);
}

.card-nav-btn.prev {
    left: 12px;
}

.card-nav-btn.next {
    right: 12px;
}

@media (max-width: 768px) {
    .card-nav-btn {
        width: 42px;
        height: 42px;
        top: 38%;
        /* Positioned above text on mobile */
    }

    .card-nav-btn.prev {
        left: 8px;
    }

    .card-nav-btn.next {
        right: 8px;
    }
}

/* Floating AI Orbs over cards */
.profile-orbs-container {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 5;
}

.profile-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.55;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #1d4ed8);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 70px;
    height: 70px;
    top: 5%;
    left: 5%;
}

.orb-2 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    right: 15%;
    animation-delay: -4s;
    background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb);
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-15px, 20px) scale(1.05);
    }

    66% {
        transform: translate(10px, -10px) scale(0.95);
    }
}

/* Process Styles for Men.html */
.step-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 3rem;
    margin-bottom: 8rem;
    align-items: flex-start;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-color);
    min-width: 40px;
    opacity: 0.5;
    letter-spacing: 0.1em;
    padding-top: 0.5rem;
    border-top: 1px solid #000;
}

.step-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.25rem;
    color: #000;
    line-height: 1.6;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* About aivuala Section Styles */
.about-section {
    text-align: center;
    background: #fff;
}

.about-section .reveal-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.about-section .subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 5rem;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
    text-align: left;
}

.feature-item {
    padding: 2.5rem;
    border: none;
    background: #fbfbfb;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(82, 17, 212, 0.08);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 17, 212, 0.05);
    border-radius: 12px;
}

.feature-icon svg {
    stroke: var(--brand-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.5;
}

.section-footer {
    margin-top: 4rem;
}

.exclusivity {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.quote {
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.02em;
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .quote {
        font-size: 1.25rem;
    }
}


/* Pricing Cards & Early Access */
.pricing-card-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.05);
}

.pricing-card-founder {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 255, 0.95) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 24px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.founder-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    padding: 8px 45px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
}

.founder-badge {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

@media (max-width: 768px) {
    .pricing-card-founder {
        transform: scale(1);
        padding: 1.25rem !important;
    }

    .pricing-card-light {
        padding: 1.25rem !important;
    }

    .pricing-card-light ul,
    .pricing-card-founder ul {
        gap: 0.35rem !important;
    }

    .pricing-card-light h3,
    .pricing-card-founder h3 {
        margin-bottom: 0.15rem !important;
    }

    .pricing-card-light .founder-badge,
    .pricing-card-founder .founder-badge {
        font-size: 2.2rem !important;
    }

    .founder-ribbon {
        top: 20px;
        right: -38px;
        padding: 6px 45px;
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }
}


/* Investor Section */
.investor-section {
    background: #050508;
    color: #fff;
    padding: 10rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-section input:focus,
.investor-section select:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.1);
}

.investor-section option {
    background: #111;
    color: #fff;
}

/* Flying Pixel Animation */
@keyframes pixelFly {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-1200px);
        opacity: 0;
    }
}

.pixel-fly {
    animation: pixelFly 10s linear infinite;
    opacity: 0;
}

.p-1 {
    animation-delay: 0s;
    animation-duration: 12s;
}

.p-2 {
    animation-delay: 2s;
    animation-duration: 15s;
    width: 6px;
    height: 6px;
}

.p-3 {
    animation-delay: 5s;
    animation-duration: 10s;
    width: 15px;
    height: 15px;
    fill: #ff7a00;
}

.p-4 {
    animation-delay: 1s;
    animation-duration: 14s;
}

.p-5 {
    animation-delay: 8s;
    animation-duration: 18s;
    width: 8px;
    height: 8px;
}

.p-6 {
    animation-delay: 4s;
    animation-duration: 11s;
    width: 12px;
    height: 12px;
    fill: #e64500;
}

.p-7 {
    animation-delay: 7s;
    animation-duration: 13s;
}

.p-8 {
    animation-delay: 3s;
    animation-duration: 16s;
    width: 7px;
    height: 7px;
}

.p-9 {
    animation-delay: 9s;
    animation-duration: 12s;
    width: 14px;
    height: 14px;
    fill: #ff7a00;
}

.p-10 {
    animation-delay: 6s;
    animation-duration: 17s;
}

.p-11 {
    animation-delay: 1.5s;
    animation-duration: 14s;
    width: 5px;
    height: 5px;
}

.p-12 {
    animation-delay: 4.5s;
    animation-duration: 11s;
    width: 18px;
    height: 18px;
    fill: #e64500;
}

/* AI Profile Preview Section Styles */
.profile-preview-section {
    background: #0a0515;
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    /* Allow pass-through by default */
}

.profile-preview-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.profile-preview-section h2,
.profile-preview-section .subtitle {
    color: #fff;
    position: relative;
    z-index: 2;
}

.profile-card-container {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    position: relative;
    z-index: 5;
    /* Higher to clear section BG/header */
    pointer-events: auto !important;
}

.ai-profile-card {
    width: 100%;
    max-width: 400px;
    background: #000;
    border-radius: 32px;
    /* overflow: hidden; REMOVED to allow nav buttons and prevent clipping */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    text-align: left;
    height: 700px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    isolation: isolate;
    pointer-events: auto !important;
    /* Re-enable clics for cards */
}

.card-header {
    padding: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.story-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.story-bars .bar {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

.story-bars .bar.active {
    background: var(--brand-color);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #aaa;
}

.card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 32px;
    /* Maintain card shape precisely */
}

.card-image img,
.card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
}

/* Video Avatar Styling */
.ai-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.ai-fallback-img {
    z-index: 1;
    /* Sits behind video while loading */
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    z-index: 5;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: #fff;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.profile-main h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-main h3::after {
    content: '✓';
    font-size: 1rem;
    background: var(--brand-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.profile-main .tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.match-criteria {
    margin-top: 2rem;
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-color);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.progress-item {
    margin-bottom: 1.25rem;
}

.prog-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.prog-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.prog-bar .fill {
    height: 100%;
    background: var(--brand-color);
    border-radius: 3px;
}

.look-for {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.look-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.card-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
    transform: scale(1.15);
}

.btn-no {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-no:hover {
    color: #fff;
    background: #252525;
}

.btn-yes {
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    /* Warm orange-red gradient */
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 95, 109, 0.4);
}

.btn-yes:hover {
    box-shadow: 0 15px 35px rgba(255, 95, 109, 0.6);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #eee;
    border: none;
    color: #666;
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 600px) {
    .profile-preview-section {
        padding: 6rem 1rem;
    }

    .ai-profile-card {
        border-radius: 24px;
        height: 600px;
    }
}


/* Men Section Redesign Styles */
.men-section {
    background: #fff;
    padding: 10rem 2rem;
}

.title-large {
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 3rem;
}

.men-intro {
    max-width: 800px;
    margin-bottom: 5rem;
    text-align: left;
}

.intro-main {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-detail {
    font-size: 1.25rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

.avatar-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.avatar-card.premium {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f8f8f8;
}

.avatar-card.premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: left;
    z-index: 2;
}

.avatar-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.avatar-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.selection-concept {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    margin-bottom: 8rem;
    padding: 4rem;
    background: #fbfbfb;
    border-radius: var(--border-radius);
}

.concept-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #000;
}

.concept-box p {
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    color: #000;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-color);
    font-weight: 800;
}

.men-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.form-card {
    background: #fff;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 800;
}

.form-card p {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    max-width: 100%;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 1.25rem;
    color: #aaa;
}

.input-with-icon input {
    width: 100%;
    padding: 1.125rem 1.125rem 1.125rem 3.5rem !important;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(82, 17, 212, 0.05);
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem !important;
    font-size: 1.1rem !important;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .men-section {
        padding: 6rem 1.5rem;
    }

    .avatar-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .selection-concept {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .form-card {
        padding: 3rem 1.5rem;
    }

    h1,
    h2,
    .title-large {
        font-size: 2.4rem !important;
        letter-spacing: -0.02em;
        margin-bottom: 0.8rem !important;
        /* Closer to following text */
    }

    .intro-main {
        font-size: 1.2rem !important;
    }

    h3 {
        font-size: 1.35rem !important;
    }

    .experience-intro h3.intro-detail {
        margin-bottom: 0.4rem !important;
        /* Tighten gap between the two paragraphs */
    }

    .subtitle,
    .section-description {
        font-size: 1.1rem !important;
    }

    .tagline {
        font-size: 0.9rem !important;
    }

    section p,
    .hero-content p,
    .intro-detail {
        font-size: 1.05rem !important;
        line-height: 1.6;
    }

    .hero-content {
        padding: 0 2rem;
        /* Separation for the first subtitle (Hero) */
    }

    /* Target specific inline fonts that might be too large */
    .pricing-card-founder .founder-badge {
        font-size: 1.8rem !important;
    }
}

/* Profile Slider Styles */
.profile-slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 5rem auto 0;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    touch-action: pan-y;
}

.profile-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
    padding-left: calc(50% - 175px);
    user-select: none;
    -webkit-user-select: none;
}

.profile-slider .ai-profile-card {
    flex: 0 0 350px;
    transform: scale(0.85);
    opacity: 0.6;
    transition: all 0.6s ease;
    filter: blur(1px);
    overflow: hidden;
    will-change: transform;
    isolation: isolate;
}

.profile-slider .ai-profile-card.active {
    transform: scale(1.05);
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.profile-slider .ai-profile-card.active .card-actions,
.profile-slider .ai-profile-card.active a.btn-black {
    pointer-events: auto;
    /* Ensure explicitly enabled */
}

/* Staggered entrance for card content */
.ai-profile-card .card-body>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.ai-profile-card.active .card-body>* {
    opacity: 1;
    transform: translateY(0);
}

.ai-profile-card.active .profile-main {
    transition-delay: 0.4s;
}

.ai-profile-card.active .match-criteria {
    transition-delay: 0.6s;
}

.ai-profile-card.active .card-actions {
    transition-delay: 0.8s;
}

/* Image zoom effect */
.ai-profile-card .card-image img {
    transform: scale(1.2);
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ai-profile-card.active .card-image img {
    transform: scale(1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--brand-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--brand-color);
}

@keyframes sliderHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }
}

.profile-slider.hint {
    animation: sliderHint 1.2s ease-in-out;
}

/* Prev / Next arrow buttons */
.slider-arrow-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.slider-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.slider-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: scale(1.04);
}

.slider-arrow-btn:active {
    transform: scale(0.97);
}

.slider-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .profile-slider {
        padding-left: calc(50% - 150px);
    }

    .profile-slider .ai-profile-card {
        flex: 0 0 300px;
    }
}

/* Registration Cards Background SVG Animations */
.card-men>*:not(.stripe-bg),
.card-women>*:not(.stripe-bg) {
    position: relative;
    z-index: 2;
}

.stripe-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    border-radius: 20px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    animation: blob-drift 8s infinite alternate ease-in-out;
    /* Reduced from 15s to 8s for more speed */
}

/* Card Men Colors - Minimalist grayscale with subtle orange hints */
.card-men .blob-1 {
    width: 250px;
    height: 250px;
    background: #e0e0e0;
    top: -50px;
    left: -50px;
}

.card-men .blob-2 {
    width: 200px;
    height: 200px;
    background: #cccccc;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
    animation-duration: 12s;
}

.card-men .blob-3 {
    width: 150px;
    height: 150px;
    background: var(--brand-orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-delay: -10s;
    animation-duration: 20s;
}

/* Card Women Colors - Warm, dynamic oranges and peaches */
.card-women .blob-1 {
    width: 300px;
    height: 300px;
    background: #ffd6cc;
    top: -100px;
    right: -50px;
}

.card-women .blob-2 {
    width: 250px;
    height: 250px;
    background: #ffb899;
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
    animation-duration: 14s;
}

.card-women .blob-3 {
    width: 200px;
    height: 200px;
    background: var(--brand-orange);
    top: 30%;
    left: 30%;
    opacity: 0.25;
    animation-delay: -3s;
    animation-duration: 18s;
}

@keyframes blob-drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(80px, -60px) scale(1.3) rotate(45deg);
        /* Larger movement, scale, and rotation */
    }

    66% {
        transform: translate(-60px, 80px) scale(0.8) rotate(-45deg);
    }

    100% {
        transform: translate(20px, -20px) scale(1.1) rotate(20deg);
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: #fff;
    padding: 3.5rem 2.5rem 2.5rem;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #e0e0e0;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 3rem 1.5rem 2rem;
    }
}

/* New Footer Styles */
.footer-separator {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.footer-branding {
    width: 100%;
    margin: 6rem 0;
    overflow: hidden;
    user-select: none;
    line-height: 0.8;
    background: #fff;
    /* Removed grey border lines */
}

.footer-marquee {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 240s linear infinite;
}

.footer-marquee span {
    font-size: clamp(8rem, 25vw, 20rem);
    /* Significantly larger size */
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #000;
    text-transform: none;
    display: inline-block;
}

.v-accent {
    color: var(--brand-orange);
    animation: vColorShift 6s infinite ease-in-out;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes vColorShift {

    0%,
    100% {
        color: var(--brand-orange);
    }

    33% {
        color: #ff0055;
    }

    /* Deep pink/red */
    66% {
        color: #ff8c00;
    }

    /* Dark orange */
}


.main-footer {
    padding: 6rem 2rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #000;
    transform: translateY(-1px);
}

.footer-info {
    color: #999;
    font-size: 0.8rem;
    line-height: 2;
    max-width: 600px;
}