:root {
    color-scheme: light;
    font-family: "Inter", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    background: #fbf2f6;
    color: #2f2320;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 238, 244, 0.95), transparent 28%),
                radial-gradient(circle at bottom right, rgba(245, 241, 255, 0.92), transparent 24%),
                linear-gradient(180deg, #fff7f9 0%, #fbf2f6 35%, #fffdfb 100%);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    color: #342a28;
}

.page-shell {
    width: min(100%, 1180px);
    padding: 24px;
}

.hero-panel {
    padding: 46px 52px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 80px rgba(82, 53, 59, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(210, 179, 178, 0.3);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 20%, rgba(255, 221, 236, 0.35), transparent 16%),
                radial-gradient(circle at 85% 20%, rgba(237, 226, 255, 0.34), transparent 18%);
    opacity: 0.85;
}

.hero-panel,
.info-grid {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 229, 235, 0.65);
    color: #a55f6c;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

h1 {
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #2a1818;
}

.subtitle {
    margin: 18px 0 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #594846;
    max-width: 740px;
}

.hero-content {
    margin-top: 34px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 249, 0.95));
    border: 1px solid rgba(222, 197, 197, 0.35);
}

.hero-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: #4f3a3a;
}

.status-chip {
    display: inline-flex;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    color: #7a4f56;
    background: rgba(255, 206, 219, 0.28);
    font-size: 0.95rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.info-card {
    padding: 28px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(230, 205, 203, 0.35);
    box-shadow: 0 16px 38px rgba(104, 73, 77, 0.08);
}

.info-card h2 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: #392627;
}

.info-card p {
    margin: 0;
    color: #5d4543;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .hero-panel {
        padding: 30px 24px;
    }

    .info-grid {
        margin-top: 24px;
    }
}
