/* ─── CSS Variables (App Aesthetic) ─── */
:root {
    --bg-deep: #1A0408;
    --bg-card: #3A0C14;
    --gold: #D4AF37;
    --gold-muted: rgba(212, 175, 55, 0.65);
    --parchment: #F3E5AB;
    --parchment-muted: rgba(243, 229, 171, 0.72);
    --font-display: 'Playfair Display', serif;
    --font-serif: 'Lora', serif;
}

/* ─── Reset & Base ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--parchment);
    font-family: var(--font-serif);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

/* ─── Typography ─── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--parchment);
    line-height: 1.1;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.9;
}

/* ─── Layout & Nav ─── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 1.2px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #fff;
}

.nav-links a {
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ─── Hero Section ─── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: 88vh;
    padding: 5rem 0 6rem;
}

.hero-content h1 {
    font-size: 4.1rem;
    margin-bottom: 1.6rem;
}

.hero-content p {
    font-size: 1.28rem;
    color: var(--parchment-muted);
    margin-bottom: 2.75rem;
    max-width: 92%;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    max-width: 420px;
}

.waitlist-input {
    flex: 1;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--parchment);
    padding: 1.1rem 1.3rem;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 1.02rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.waitlist-input::placeholder {
    color: rgba(243, 229, 171, 0.35);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    padding: 0 2.4rem;
    font-family: var(--font-display);
    font-size: 1.12rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px var(--gold);
}

.hero-disclaimer {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--gold-muted);
    font-style: italic;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.8rem;
    opacity: 0.9;
    font-size: 0.97rem;
    font-style: italic;
    color: var(--parchment-muted);
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 42px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.65);
    border: 10px solid var(--bg-card);
    transition: transform 0.6s ease;
    animation: float 7s ease-in-out infinite;
}

.glow {
    position: absolute;
    width: 82%;
    height: 82%;
    background: rgba(212, 175, 55, 0.12);
    filter: blur(85px);
    z-index: -1;
    top: 8%;
    left: 9%;
}

/* Showcase */
.showcase {
    padding: 9rem 0 6rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
    margin-bottom: 9rem;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse > * {
    direction: ltr;
}

.showcase-text h2 {
    font-size: 2.65rem;
    margin-bottom: 1.6rem;
}

.showcase-text p {
    font-size: 1.15rem;
    color: var(--parchment-muted);
    line-height: 1.7;
}

.mockup-img {
    width: 100%;
    max-width: 290px;
    border-radius: 38px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    display: block;
    transition: transform 0.5s ease;
}

.mockup-img:hover {
    transform: scale(1.04);
}

/* Utility Classes for Legal / Support / Privacy Pages */
.page-header {
    padding: 7rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 5rem;
}

.page-header h1 {
    font-size: 3.6rem;
}

.content-block {
    max-width: 820px;
    margin: 0 auto 7rem auto;
}

.content-block h2 {
    font-size: 1.95rem;
    margin: 3.5rem 0 1.2rem 0;
    color: var(--gold);
}

.content-block p {
    margin-bottom: 1.7rem;
    color: var(--parchment-muted);
    font-size: 1.05rem;
}

.content-block a {
    color: var(--gold);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.content-block a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 5rem 0 3rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
}

.footer-links a {
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(243, 229, 171, 0.32);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
}

/* Responsive */
@media (max-width: 920px) {
    .hero,
    .showcase-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 3.1rem;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 2.2rem auto;
    }

    .waitlist-form {
        margin: 0 auto;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary {
        padding: 1.1rem 2rem;
    }

    .glow {
        display: none;
    }

    .showcase-row {
        margin-bottom: 6rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Stack the navigation vertically on phones */
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
} 