*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1f2937;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    padding: 1.5rem 1.25rem;
}

.landing-header-inner {
    max-width: 72rem;
    margin: 0 auto;
	display: flex;
    justify-content: center;
}

.landing-logo {
    display: block;
    height: 2.5rem;
    width: auto;
}

.landing-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 4rem;
    position: relative;
    overflow: hidden;
}

.landing-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(143, 51, 205, 0.12), transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 188, 221, 0.08), transparent 60%);
    pointer-events: none;
}

.landing-content {
    position: relative;
    max-width: 40rem;
    text-align: center;
}

.landing-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(80, 17, 121, 0.08);
    color: #501179;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.landing-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
}

.landing-description {
    margin: 0 auto 2rem;
    max-width: 32rem;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #4b5563;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-btn-primary {
    background: #501179;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(80, 17, 121, 0.25);
}

.landing-btn-primary:hover {
    background: #4a0075;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(80, 17, 121, 0.3);
    color: #ffffff;
}

.landing-btn-secondary {
    background: #ffffff;
    color: #501179;
    border: 2px solid rgba(80, 17, 121, 0.2);
}

.landing-btn-secondary:hover {
    background: rgba(80, 17, 121, 0.04);
    border-color: rgba(80, 17, 121, 0.35);
    color: #501179;
}

.landing-note {
    margin: 0;
    font-size: 0.9375rem;
    color: #6b7280;
}

.landing-note a {
    color: #501179;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.landing-note a:hover {
    color: #4a0075;
}

.landing-footer {
    padding: 1.5rem 1.25rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.landing-footer-inner {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (max-width: 480px) {
    .landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-btn {
        width: 100%;
        min-width: 0;
    }
}
