:root{
  --navy:#071F4A;
  --navy2:#10336F;
  --yellow:#FFD100;
  --bg:#EEF4FB;
  --text:#101828;
  --muted:#667085;
  --white:#fff;
}
*{box-sizing:border-box}
html,body{min-height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Hiragino Sans","Yu Gothic",sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,209,0,.25), transparent 28%),
    linear-gradient(180deg,#F8FBFF 0%,var(--bg) 100%);
  color:var(--text);
  padding-bottom:96px;
}
.page{
  width:100%;
  max-width:620px;
  margin:0 auto;
  padding:22px 16px;
}
.summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo{
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--navy);
  color:var(--white);
  display:grid;
  place-items:center;
  font-weight:900;
  border-bottom:4px solid var(--yellow);
}
.brand strong{
  display:block;
  font-size:13px;
  letter-spacing:.06em;
}
.brand small{
  display:block;
  font-size:10px;
  color:var(--muted);
  letter-spacing:.12em;
}
.badge{
  background:#fff;
  color:var(--navy);
  border:1px solid rgba(7,31,74,.14);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
}
.hero-card{
  background:
    linear-gradient(135deg,rgba(7,31,74,.96),rgba(16,51,111,.92)),
    radial-gradient(circle at 80% 20%,rgba(255,209,0,.35),transparent 32%);
  color:#fff;
  border-radius:24px;
  padding:28px 22px;
  box-shadow:0 16px 40px rgba(7,31,74,.22);
  margin-bottom:16px;
  position:relative;
  overflow:hidden;
}
.hero-card:after{
  content:"";
  position:absolute;
  right:-36px;
  bottom:-36px;
  width:140px;
  height:140px;
  border:18px solid rgba(255,255,255,.08);
  border-radius:50%;
}
.hero-label{
  display:inline-block;
  background:var(--yellow);
  color:var(--navy);
  border-radius:999px;
  padding:6px 11px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:13px;
}
.hero-card h1{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.25;
}
.hero-card p{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.75;
  font-weight:600;
}
.card,.success-card{
  background:#fff;
  border-radius:22px;
  padding:24px 20px;
  box-shadow:0 12px 34px rgba(7,31,74,.12);
  border:1px solid rgba(7,31,74,.06);
}
.form label{
  display:block;
  margin:16px 0 7px;
  font-weight:900;
}
.form input[type="text"],
.form input[type="date"],
.form input[type="file"]{
  width:100%;
  padding:15px 13px;
  border:1px solid #D8DFEA;
  border-radius:14px;
  font-size:16px;
  background:#fff;
}
.btn{
  width:100%;
  min-height:56px;
  border:0;
  border-radius:16px;
  padding:14px 18px;
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
}
.btn.primary{
  background:linear-gradient(180deg,var(--navy2),var(--navy));
  color:#fff;
  border-bottom:5px solid var(--yellow);
  box-shadow:0 8px 18px rgba(7,31,74,.22);
}
.alert{
  background:#FFF2F2;
  border-left:5px solid #E54848;
  padding:12px;
  border-radius:12px;
  line-height:1.65;
  margin-bottom:14px;
}
.status{
  margin:12px 0 0;
  font-size:12px;
  color:var(--muted);
  text-align:center;
}
.success-card{
  text-align:center;
  margin-top:24px;
}
.check{
  width:72px;
  height:72px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:#fff;
  font-size:38px;
  font-weight:900;
  border-bottom:6px solid var(--yellow);
}
.success-card h1{
  font-size:25px;
  margin:0 0 10px;
}
.lead{
  color:var(--muted);
  line-height:1.7;
}
.notice{
  padding:13px;
  border-radius:12px;
  line-height:1.6;
  margin:16px 0;
}
.notice.success{
  background:#ECFDF3;
  color:#05603A;
  border-left:5px solid #12B76A;
}
.notice.warning{
  background:#FFF8D7;
  color:#5D4A00;
  border-left:5px solid var(--yellow);
}
.return-text{
  font-weight:800;
}
.admin-card{
  margin-top:20px;
  max-width:960px;
}
.table-wrap{
  overflow-x:auto;
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
th,td{
  border-bottom:1px solid #E4E7EC;
  padding:10px 8px;
  text-align:left;
  white-space:nowrap;
}
th{
  color:var(--muted);
  font-size:12px;
}
.mini-btn{
  display:inline-block;
  background:var(--navy);
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  font-size:12px;
  font-weight:800;
}
pre{
  white-space:pre-wrap;
  background:#111827;
  color:#fff;
  padding:12px;
  border-radius:10px;
  overflow:auto;
}
.footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--navy);
  border-top:4px solid var(--yellow);
  color:#fff;
  text-align:center;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index:9999;
  box-shadow:0 -8px 22px rgba(7,31,74,.18);
}
.footer .jun{
  font-size:21px;
  font-weight:900;
  letter-spacing:3px;
  line-height:1.1;
}
.footer p{
  margin:5px 0 0;
  font-size:12px;
  line-height:1.5;
}
