* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #09090f;
    color: #f2ead9;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}

:root {
    --gold: #c7a45a;
    --light-gold: #e4c982;
    --gold-dark: #8f6f34;
    --text: #f2ead9;
    --muted: #a8a399;
    --border: rgba(199,164,90,.18);
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07070d;
    transition: opacity .8s ease, visibility .8s ease;
}

.splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
}

.splash img {
    width: 180px;
    opacity: 0;
    transform: scale(.8);
    animation: logo 1.2s ease forwards;
}

.splash h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    letter-spacing: .18em;
    color: var(--light-gold);
    opacity: 0;
    animation: show 1s .5s ease forwards;
}

.splash p {
    color: #77737a;
    font-size: .7rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    opacity: 0;
    animation: show 1s .9s ease forwards;
}

.loader {
    width: 220px;
    height: 2px;
    margin: 55px auto 0;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    opacity: 0;
    animation: show 1s 1.2s ease forwards;
}

.loader span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loading 2.5s ease forwards;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 7%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(9,9,15,.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
    transition: .3s ease;
}

nav.scrolled {
    border-color: var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gold);
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    transition: .3s ease;
}

nav a:hover {
    color: var(--light-gold);
}

.login {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--gold);
    color: #15110a !important;
    font-weight: 600;
}

.hero {
    min-height: 100vh;
    padding: 150px 7% 80px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    width: 55%;
}

.label {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem,8vw,7rem);
    line-height: .9;
    font-weight: 500;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    max-width: 560px;
    margin-top: 28px;
    color: var(--muted);
    line-height: 1.8;
}

.buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s ease;
    font-size: .9rem;
}

.primary {
    background: var(--gold);
    color: #15110a;
    font-weight: 600;
}

.primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid var(--border);
    color: var(--text);
}

.secondary:hover {
    border-color: var(--gold);
    color: var(--light-gold);
}

.hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: min(430px,90%);
    filter: drop-shadow(0 0 50px rgba(199,164,90,.12));
    animation: float 5s ease-in-out infinite;
}

section {
    padding: 110px 7%;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

.section-title {
    max-width: 700px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem,5vw,5rem);
    font-weight: 500;
    line-height: 1;
}

.description {
    max-width: 650px;
    margin-top: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.features,
.plans,
.team {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 55px;
}

.card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.015);
    transition: transform .35s ease, border-color .35s ease;
}

.card:hover {
    transform: translateY(-7px);
    border-color: rgba(199,164,90,.45);
}

.icon {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.8rem;
}

.card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 500;
}

.card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.pricing {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(199,164,90,.03),
        transparent
    );
}

.plan {
    position: relative;
}

.plan.popular {
    border-color: var(--gold);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 11px;
    border-radius: 20px;
    background: var(--gold);
    color: #15110a;
    font-size: .6rem;
    font-weight: 600;
}

.price {
    margin: 20px 0;
    color: var(--light-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
}

.price small {
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: .8rem;
}

.plan ul {
    margin: 25px 0;
    list-style: none;
}

.plan li {
    margin: 13px 0;
    color: #cfc9be;
    font-size: .9rem;
}

.plan li::before {
    content: "✓";
    margin-right: 9px;
    color: var(--gold);
}

.member {
    text-align: center;
}

.member-image {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
}

.member span {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    padding: 13px;
    border-radius: 30px;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: .3s ease;
}

.google:hover {
    transform: translateY(-2px);
}

.google-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

footer {
    padding: 60px 7% 25px;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer img {
    width: 80px;
}

footer h2 {
    color: var(--light-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
}

footer p {
    margin-top: 5px;
    color: var(--muted);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #69656b;
    font-size: .7rem;
}

@keyframes logo {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes show {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media(max-width:900px) {
    nav ul {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .buttons {
        justify-content: center;
    }

    .features,
    .plans,
    .team {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .splash h1 {
        font-size: 3.5rem;
    }

    .splash img {
        width: 150px;
    }

    section {
        padding: 85px 6%;
    }

    .features,
    .plans,
    .team {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 4rem;
    }
}