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

:root {
    --bg: #1c1a17;
    --bg-2: #242019;
    --card: #ffffff;
    --ink: #f2ede4;
    --ink-muted: #b7ac9d;
    --line: rgba(242, 237, 228, 0.22);
    --accent: #cdb27f;
}

html, body {
    height: 100%;
}

body {
    background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg) 70%);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    position: relative;
    overflow-x: hidden;
}

.blueprint-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(242, 237, 228, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 237, 228, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.hero {
    position: relative;
    z-index: 2;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: rise 1s ease-out both;
}

.logo-card {
    background: var(--card);
    padding: 18px 26px;
    border-radius: 3px;
    box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.55);
    margin-bottom: 34px;
}

.logo {
    display: block;
    width: min(240px, 54vw);
    height: auto;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.divider span {
    width: 52px;
    height: 1px;
    background: var(--line);
}

.divider svg {
    width: 7px;
    height: 7px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.4;
    transform: rotate(45deg);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(34px, 6vw, 54px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 20px;
}

.lead {
    font-size: clamp(14.5px, 1.8vw, 16.5px);
    line-height: 1.9;
    color: var(--ink-muted);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 46px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 1px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid var(--accent);
    color: var(--bg);
    background: var(--accent);
}

.cta:hover {
    background: transparent;
    color: var(--accent);
}

.cta.secondary {
    background: transparent;
    color: var(--ink-muted);
    border-color: var(--line);
}

.cta.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.cta-dropdown {
    position: relative;
}

.cta-dropdown .cta {
    cursor: pointer;
    font-family: inherit;
}

.chevron {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.cta-dropdown[data-open="true"] .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    background: var(--card);
    border-radius: 2px;
    box-shadow: 0 20px 50px -14px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    z-index: 5;
}

.dropdown-menu a {
    display: block;
    padding: 14px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--bg);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 26, 23, 0.1);
    transition: background 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(28, 26, 23, 0.06);
}

footer {
    position: relative;
    z-index: 1;
    font-size: 11.5px;
    color: rgba(183, 172, 157, 0.6);
    letter-spacing: 0.04em;
    animation: rise 1s ease-out 0.2s both;
}

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

@media (max-width: 480px) {
    .logo-card {
        padding: 24px 30px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta {
        justify-content: center;
        width: 100%;
    }
}
