:root {
    /* Liquid Glass Color Palette - Soft & Premium */
    --primary-blue: #bde0fe;
    --primary-pink: #ffc8dd;
    --accent-blue: #a2d2ff;
    --accent-pink: #ffafcc;
    --bg-main: #fcfdfe;
    --text-dark: #0f172a;
    --text-muted: #64748b;

    /* Advanced Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    --glass-blur: 25px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Liquid Animated Background Assets */
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f1f5f9 100%);
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.4;
    animation: liquid-move 30s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    top: -200px;
    right: -150px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
}

.blob-2 {
    bottom: -200px;
    left: -150px;
    background: linear-gradient(45deg, var(--primary-pink), var(--accent-pink));
    animation-delay: -10s;
}

@keyframes liquid-move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1) rotate(20deg);
    }

    66% {
        transform: translate(-50px, 150px) scale(0.9) rotate(-15deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Base Components */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: var(--glass-shadow);
}

/* Navigation - Floating Liquid Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    margin-top: 2rem;
    position: sticky;
    top: 2rem;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-dark), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: var(--accent-pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Hero Section - The WOW factor */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
}

.badge-trust {
    background: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2.5rem;
    border: 1px solid #ecfdf5;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -4px;
    font-weight: 900;
    color: var(--text-dark);
}

.hero h1 span {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

/* Scrolling Before/After */
.gallery-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-container {
    overflow: hidden;
    padding: 2rem 0;
}

.scroll-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: slide-left 50s linear infinite;
}

.scroll-track.reverse {
    animation: slide-right 50s linear infinite;
}

@keyframes slide-left {
    to {
        transform: translateX(-50%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.comparison-card {
    width: 500px;
    padding: 1.2rem;
    background: #fff;
    border-radius: 35px;
    box-shadow: var(--glass-shadow);
    display: flex;
    gap: 1.2rem;
}

.compare-item {
    flex: 1;
    position: relative;
}

.compare-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
}

.label-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-section {
    padding: 8rem 0;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    padding: 3rem 2rem;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Main Pose Gallery */
.gallery-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.pose-card {
    padding: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
}

.pose-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.pose-card .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.pose-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 0;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pose-card:hover img {
    transform: scale(1.1);
}

.pose-meta {
    padding: 0.5rem;
}

.pose-price {
    background: var(--text-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

/* Ratio Selection Styles */
.selection-item label {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Fixed height for consistency */
    gap: 10px;
}

.ratio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 4px;
    opacity: 0.4;
    transition: all 0.3s;
}

.ratio-box.vertical {
    width: 22px;
    height: 35px;
}

.ratio-box.square {
    width: 30px;
    height: 30px;
}

.ratio-box.horizontal {
    width: 40px;
    height: 22px;
}

.selection-item input:checked+label .ratio-box {
    opacity: 1;
    border-width: 3px;
    transform: scale(1.1);
}

/* Action Buttons */
.btn-primary {
    background: var(--text-dark);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: #000;
}

/* Credit Badge */
.credit-badge {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--glass-border);
}

/* Auth Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 3.5rem;
    text-align: center;
}

.auth-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    padding-left: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .comparison-card {
        width: 340px;
        padding: 1rem;
    }

    .compare-item img {
        height: 200px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .navbar {
        padding: 1rem;
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        top: 0;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        width: 280px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* Elite Glass Footer */
.footer {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid var(--glass-border);
    padding: 6rem 0 3rem;
    margin-top: 8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent-pink);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Comparison Section Styles - Elite Liquid Glass */
.comparison-section {
    padding: 10rem 0;
    position: relative;
    z-index: 10;
}

.comparison-table {
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid var(--glass-border);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.3);
}

.table-row:last-child {
    border-bottom: none;
}

.table-head {
    background: rgba(15, 23, 42, 0.02);
    font-weight: 800;
}

.table-cell {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    color: var(--text-dark);
}

.table-cell:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

/* Feature Column - Minimalist */
.table-cell:first-child {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Traditional Column - Subtly Muted */
.col-bad {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.col-bad .status-label {
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* AI Column - Premium Liquid Glow */
.col-good {
    background: rgba(189, 224, 254, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

.col-good .status-label {
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.col-good::after {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 1px solid rgba(162, 210, 255, 0.3);
    border-right: 1px solid rgba(162, 210, 255, 0.3);
    pointer-events: none;
}

.table-head .col-bad {
    background: rgba(239, 68, 68, 0.05);
    color: #b91c1c;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.table-head .col-bad::before {
    content: "✕";
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
}

.table-head .col-good {
    background: rgba(16, 185, 129, 0.05);
    color: #065f46;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.table-head .col-good::before {
    content: "✓";
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
}

@media (max-width: 992px) {
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        border-right: none;
        padding: 2rem;
        text-align: center;
    }

    .table-head {
        display: none;
    }

    .table-cell:first-child {
        background: var(--text-dark);
        color: white;
        padding: 1rem;
    }
}

/* Scrolling Before/After - Enhanced Liquid */
.scrolling-ba-section {
    padding: 10rem 0;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
}

.scroll-container.full-width {
    width: 100%;
    position: relative;
    margin: 0;
}

.ba-scroll-card {
    flex: 0 0 520px;
    padding: 1.2rem;
    margin-right: 3rem;
    border-radius: 40px;
    /* Big rounded corners like screenshot */
}

.ba-scroll-card .pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.ba-scroll-card .img-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ba-scroll-card .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-scroll-card:hover img {
    transform: scale(1.1);
}

.label-circle {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.5px;
    line-height: 1;
}

.label-circle.ai {
    background: var(--text-dark);
    color: #fff;
    left: auto;
    right: 12px;
    width: auto;
    height: auto;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.scroll-track.reverse {
    animation: scroll-right 40s linear infinite;
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

/* Before/After Showcase - Elite Horizontal */
.ba-showcase-section {
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.ba-horizontal-scroll {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 2rem 1rem 4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.ba-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.ba-horizontal-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ba-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.ba-premium-card {
    flex: 0 0 700px;
    padding: 1.5rem;
    scroll-snap-align: center;
    transition: all 0.4s ease;
}

.ba-premium-card:hover {
    transform: translateY(-10px);
}

.ba-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ba-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.ba-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ba-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.ba-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dark);
}

.ba-info {
    padding: 0.5rem;
}

.ba-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.ba-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ba-premium-card {
        flex: 0 0 85vw;
    }

    .ba-image-pair {
        grid-template-columns: 1fr;
    }
}