:root {
    color-scheme: dark;
    --ink: #f7f4ec;
    --muted: rgba(247, 244, 236, 0.78);
    --surface: rgba(4, 4, 5, 0.62);
    --border: rgba(247, 244, 236, 0.25);
    --accent: #f0c676;
    --bg-desktop: url('https://images.unsplash.com/photo-1635209896150-ef275dbd52a2?auto=format&fit=crop&w=2100&q=80');
    --bg-mobile: url('https://images.unsplash.com/photo-1530891671629-3a053324e4f7?auto=format&fit=crop&w=1200&q=80');
}

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

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #050505;
    color: var(--ink);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 3rem);
    padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 2rem;
    position: relative;
    isolation: isolate;
}

.page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(115deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.28)), var(--bg-desktop);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 35% 20%, rgba(240, 198, 118, 0.25), transparent 45%),
                radial-gradient(circle at 75% 80%, rgba(118, 147, 240, 0.18), transparent 45%);
    mix-blend-mode: screen;
    opacity: 0.6;
    z-index: -1;
}

.site-header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.wordmark {
    display: inline-block;
    font-family: 'Fraunces', 'Sora', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    font-weight: 600;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(247, 244, 236, 0.45);
}

.header-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.6);
}

main {
    display: flex;
    justify-content: center;
}

.hero,
.policy-card {
    width: min(860px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2.25rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.coming-soon,
.preview-label {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.7);
}

h1,
.hero h1,
.policy-card h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 6vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.lead {
    font-size: clamp(1.1rem, 2.6vw, 1.35rem);
    color: var(--muted);
    max-width: 42ch;
}

.supporting-copy,
.policy-card p,
.preview-subhead {
    color: rgba(247, 244, 236, 0.84);
    font-size: 1rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.cta-row a {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-decoration-color: rgba(247, 244, 236, 0.5);
    text-underline-offset: 0.2rem;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(247, 244, 236, 0.72);
}

.newsletter-block {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 244, 236, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.newsletter-heading {
    text-transform: uppercase;
    letter-spacing: 0.24rem;
    font-size: 0.9rem;
    color: rgba(247, 244, 236, 0.75);
}

.newsletter-note {
    font-size: 0.92rem;
    color: rgba(247, 244, 236, 0.7);
}

#omnisend-embedded-v2-69165225050bbdb7680b4b04 {
    min-height: 260px;
    width: 100%;
}

.policy-card {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.policy-card time {
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.7);
}

.policy-card section + section {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(247, 244, 236, 0.12);
}

h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(247, 244, 236, 0.85);
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(247, 244, 236, 0.65);
}

.preview-lock {
    width: min(540px, 100%);
    background: rgba(4, 4, 5, 0.72);
    border: 1px dashed rgba(247, 244, 236, 0.35);
    border-radius: 1.75rem;
    padding: 2rem;
    text-align: center;
    display: none;
}

.preview-lock h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.preview-lock[hidden] {
    display: none;
}

.preview-lock[data-visible="true"] {
    display: block;
}

footer {
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.55);
}

footer a {
    color: rgba(247, 244, 236, 0.85);
    border-bottom: 1px solid rgba(247, 244, 236, 0.4);
    padding-bottom: 0.15rem;
}

@media (max-width: 720px) {
    .page::before {
        background-image: linear-gradient(130deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.42)), var(--bg-mobile);
    }

    .hero,
    .policy-card {
        border-radius: 1.75rem;
        padding: 1.8rem;
    }

    .wordmark {
        letter-spacing: 0.32rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    h1,
    .hero h1 {
        font-size: 2.15rem;
    }

    .lead,
    .supporting-copy,
    .policy-card p,
    ul li {
        font-size: 0.95rem;
    }

    .hero,
    .policy-card {
        padding: 1.5rem;
        border-radius: 1.4rem;
    }

    .cta-row a {
        width: 100%;
    }
}

@media (max-height: 720px) and (min-width: 721px) {
    .page {
        padding-top: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .site-header {
        margin-bottom: 1.75rem;
    }

    .hero,
    .policy-card {
        padding: 2.3rem;
    }
}
