:root {
    --bg: #09111d;
    --bg-deep: #132238;
    --surface: rgba(248, 243, 234, 0.94);
    --surface-strong: #fffaf1;
    --line: rgba(11, 18, 32, 0.12);
    --text: #1b2330;
    --muted: #5f6674;
    --accent: #c4a15e;
    --accent-strong: #a27b35;
    --accent-soft: rgba(196, 161, 94, 0.18);
    --shadow: 0 30px 80px rgba(4, 10, 19, 0.34);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(196, 161, 94, 0.18), transparent 30%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-deep) 52%, #0f1b2a 100%);
}

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

img {
    display: block;
    max-width: 100%;
}

.page-backdrop {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.backdrop-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.9;
}

.orb-left {
    top: 8vh;
    left: -8vw;
    width: 24rem;
    height: 24rem;
    background: rgba(196, 161, 94, 0.24);
}

.orb-right {
    right: -10vw;
    bottom: -8vh;
    width: 28rem;
    height: 28rem;
    background: rgba(124, 161, 196, 0.14);
}

.backdrop-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 92%);
}

.shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 1.5rem;
}

.hero-panel,
.legal-card {
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.96) 0%, rgba(244, 237, 226, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    padding: 2rem;
    min-height: calc(100vh - 7rem);
}

.hero-copy,
.brand-panel,
.legal-card {
    animation: rise 600ms ease both;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2vw, 2rem);
}

.eyebrow,
.launch-label,
.info-label,
.legal-kicker {
    margin: 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-strong);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    max-width: 11ch;
    margin-top: 1rem;
}

.lead {
    max-width: 40rem;
    margin: 1.5rem 0 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
    color: var(--muted);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card,
.launch-note {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.42);
}

.info-card {
    padding: 1.25rem;
}

.info-text {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e0c68d 100%);
    color: #241a0a;
    box-shadow: 0 18px 30px rgba(196, 161, 94, 0.24);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.46);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(162, 123, 53, 0.45);
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.contact-list li {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(9, 17, 29, 0.05);
    color: var(--muted);
}

.brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.25rem, 2vw, 2rem);
    border-radius: calc(var(--radius-xl) - 8px);
    background:
        linear-gradient(180deg, rgba(9, 17, 29, 0.94) 0%, rgba(19, 34, 56, 0.96) 100%);
    color: #f6f2e8;
    position: relative;
    overflow: hidden;
}

.brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(196, 161, 94, 0.18), transparent 28%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.04) 100%);
}

.brand-lockup,
.launch-note {
    position: relative;
    z-index: 1;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(9rem, 18vw, 12rem);
    aspect-ratio: 1;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.brand-logo.is-hidden {
    display: none;
}

.brand-fallback {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.05;
    text-align: center;
    color: #fff4d9;
}

.brand-fallback.is-hidden {
    display: none;
}

.brand-title {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-family: "Fraunces", Georgia, serif;
}

.launch-note {
    padding: 1.25rem;
}

.launch-text {
    margin: 0.8rem 0 0;
    color: rgba(246, 242, 232, 0.78);
    line-height: 1.7;
}

code {
    padding: 0.2rem 0.42rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.92em;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 0.25rem;
    color: rgba(255, 250, 241, 0.72);
}

.footer-bar p {
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 1rem;
}

.footer-nav a {
    color: inherit;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #fffaf1;
}

.legal-shell {
    position: relative;
    z-index: 1;
    width: min(880px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 1.5rem;
}

.legal-card {
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.legal-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.legal-title-wrap h1 {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    max-width: none;
}

.legal-intro {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.48);
    font-weight: 700;
    white-space: nowrap;
}

.legal-content {
    display: grid;
    gap: 1.5rem;
}

.legal-section {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.legal-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.legal-section h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-section h3,
.legal-section h4 {
    font-size: 1.05rem;
    margin-top: 1.1rem;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-weight: 800;
}

.legal-section p,
.legal-section li {
    line-height: 1.8;
    color: var(--muted);
}

.legal-section ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

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

@media (max-width: 920px) {
    .hero-panel {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .brand-panel {
        min-height: 22rem;
    }

    .legal-header {
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .shell,
    .legal-shell {
        width: min(100% - 1rem, 100%);
        padding-top: 0.75rem;
    }

    .hero-panel,
    .legal-card {
        padding: 1.15rem;
        border-radius: 24px;
    }

    h1 {
        font-size: clamp(2.3rem, 11vw, 3.3rem);
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .actions,
    .footer-bar,
    .footer-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .back-link {
        width: 100%;
    }

    .contact-list {
        flex-direction: column;
    }

    .contact-list li {
        width: 100%;
    }

    .brand-mark {
        width: 8.5rem;
    }

    .footer-bar {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
