* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    background: #f7f8fb;
    color: #1b1e28;
    line-height: 1.6;
}
a { color: #2d4fff; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1080px, 94%); margin: 0 auto; }
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8ecf5;
    position: sticky;
    top: 0;
    z-index: 20;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
}
.logo { font-weight: 800; color: #111; }
.menu { display: flex; flex-wrap: wrap; gap: 10px; }
.menu a { padding: 8px 10px; border-radius: 8px; }
.menu a:hover { background: #f4f6ff; text-decoration: none; }
.menu-toggle {
    display: none;
    border: 1px solid #d3d9ea;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
}
.main-content { padding: 24px 0 48px; }
.site-footer {
    border-top: 1px solid #e8ecf5;
    background: #fff;
    padding: 14px 0;
    text-align: center;
    color: #666;
}
.card {
    background: #fff;
    border: 1px solid #e7ebf3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(15, 24, 59, 0.03);
    margin-bottom: 18px;
}
.card-subtle {
    margin-top: 14px;
    border: 1px dashed #dbe1f0;
    border-radius: 10px;
    padding: 14px;
    background: #fbfcff;
}
.form-wrap { max-width: 760px; }
.lp-wrap { max-width: 750px; margin: 0 auto; }
h1, h2 { margin-top: 0; line-height: 1.35; }
label { display: block; font-size: 14px; margin-bottom: 7px; font-weight: 600; }
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="file"],
select,
textarea {
    width: 100%;
    border: 1px solid #d5dbea;
    border-radius: 10px;
    font-size: 16px;
    padding: 12px 14px;
    background: #fff;
}
textarea { min-height: 110px; resize: vertical; }
.form-group { margin-bottom: 16px; }
.form-note { color: #5a6175; font-size: 13px; margin-top: 6px; }
.inline { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.wrap-inline { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f6f8fe;
    border: 1px solid #dbe2f4;
    border-radius: 999px;
    padding: 8px 12px;
}
.btn {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    background: #2d4fff;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
.btn:hover { opacity: .92; text-decoration: none; }
.btn.secondary { background: #5f667a; }
.btn.danger { background: #d64045; }
.alert { padding: 12px 14px; border-radius: 8px; margin-bottom: 14px; white-space: pre-wrap; }
.alert.success { background: #ecf8f0; color: #20613b; border: 1px solid #b8e6c9; }
.alert.error { background: #fff2f2; color: #7b2023; border: 1px solid #f2c1c3; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border: 1px solid #e6eaf2; padding: 10px; text-align: left; vertical-align: top; font-size: 14px; }
th { background: #f5f7fc; white-space: nowrap; }
.badge { display: inline-block; border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 700; }
.badge.pending { background: #fff5d7; color: #76550f; }
.badge.approved { background: #e5f8ec; color: #1e6a3e; }
.badge.rejected { background: #ffeaea; color: #8a2427; }
.info-list { display: grid; gap: 10px; }
.info-item { display: grid; grid-template-columns: 130px 1fr; gap: 10px; }
.copy-box { display: flex; gap: 8px; flex-wrap: wrap; }
.copy-box input { flex: 1; min-width: 260px; }
.small { font-size: 13px; color: #5c6172; }
.notice { background: #f4f7ff; border-left: 4px solid #2d4fff; padding: 10px 12px; border-radius: 6px; }
.avatar-sm {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #dce2f1;
}
.avatar-lg {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #dce2f1;
}
.profile-summary {
    display: flex;
    gap: 14px;
    align-items: center;
}
.star-group {
    direction: rtl;
    display: inline-flex;
    gap: 4px;
}
.star-group input { display: none; }
.star-label { cursor: pointer; color: #c7cedd; }
.star-label .material-icons { font-size: 34px; }
.star-group input:checked ~ .star-label,
.star-group .star-label:hover,
.star-group .star-label:hover ~ .star-label {
    color: #f5bf18;
}
@media (max-width: 860px) {
    .menu-toggle { display: inline-block; }
    .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 6px;
        background: #fff;
        border: 1px solid #e8ecf5;
        border-radius: 10px;
        padding: 10px;
    }
    .menu.open { display: flex; }
    .header-inner { align-items: center; flex-wrap: wrap; }
    .grid-2 { grid-template-columns: 1fr; }
    .info-item { grid-template-columns: 1fr; }
    .profile-summary { align-items: flex-start; }
}
