:root {
    --dark: #290907;
    --brown: #57473A;
    --green: #6E8658;
    --blue: #73A1B2;
    --light: #D0D5CE;
    --offwhite: #EFE9E1;
}

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

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, var(--offwhite) 0%, var(--light) 25%, #B8C5B8 50%, var(--light) 75%, var(--offwhite) 100%);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    color: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* AMBIENT BLOBS */
.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.ambient.one {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), var(--green));
    top: -200px;
    left: -200px;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out, morph 25s infinite ease-in-out;
}

.ambient.two {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green), var(--brown));
    bottom: -150px;
    right: -150px;
    opacity: 0.35;
    animation: float 18s infinite ease-in-out 5s, morph 22s infinite ease-in-out 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, -60px) rotate(90deg); }
    50% { transform: translate(-60px, 80px) rotate(180deg); }
    75% { transform: translate(60px, 50px) rotate(270deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 40% 60% 50% / 40% 70% 50% 60%; }
    75% { border-radius: 40% 70% 50% 60% / 70% 50% 60% 40%; }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    position: relative;
    z-index: 100;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--green);
}

.logo-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0.15;
    transform: scaleY(-1);
    background: linear-gradient(to bottom, var(--dark), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth {
    display: flex;
    gap: 15px;
}

/* BUTTONS - STYLED AS LINKS */
.btn {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn.outline {
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid var(--green);
    color: var(--dark);
    backdrop-filter: blur(10px);
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 134, 88, 0.2);
}

.btn.solid {
    background: var(--dark);
    color: var(--offwhite);
    box-shadow: 0 4px 15px rgba(41, 9, 7, 0.2);
    border: none;
}

.btn.solid:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 9, 7, 0.3);
}

.btn.large {
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    min-width: 180px;
}

.btn.solid.large {
    background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
    box-shadow: 0 6px 20px rgba(41, 9, 7, 0.25);
}

.btn.solid.large:hover {
    background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 9, 7, 0.35);
}

.btn.outline.large {
    border: 2px solid var(--green);
    color: var(--dark);
}

.btn.outline.large:hover {
    background: var(--green);
    color: var(--offwhite);
    border-color: var(--green);
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    z-index: 10;
    padding: 40px 20px;
}

/* LIVE BID */
.live-bid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 30px;
    animation: fadeIn 1s ease 0.3s both;
    border: 1px solid rgba(110, 134, 88, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(110, 134, 88, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(110, 134, 88, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(110, 134, 88, 0);
    }
}

/* HERO CARD */
.hero-card {
    max-width: 900px;
    text-align: center;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 50px 100px rgba(41, 9, 7, 0.15),
                0 25px 50px rgba(110, 134, 88, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card h1 {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-card h1 span {
    color: var(--green);
}

.hero-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--brown);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-reflection {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent);
    transform: scaleY(-1);
    opacity: 0.4;
    border-radius: 28px;
    z-index: -1;
}

/* TRUST STRIP */
.trust-strip {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 80px;
    padding: 20px;
    animation: fadeIn 1.2s ease 0.8s both;
}

.trust-strip div {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0 20px;
}

.trust-strip div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
}

/* FLOOR REFLECTION */
.floor-reflection {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(41, 9, 7, 0.08), transparent);
    pointer-events: none;
    z-index: 5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }

    .logo {
        font-size: 22px;
    }

    .hero-card {
        padding: 40px 30px;
    }

    .hero-card h1 {
        font-size: 38px;
    }

    .hero-card p {
        font-size: 16px;
    }

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

    .btn.large {
        width: 100%;
    }

    .trust-strip {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .trust-strip div::after {
        display: none;
    }
}