/* ===============================
   GoodZone Apply - STYLE
   =============================== */

:root{
  --bg:#020617;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.035);
  --border: rgba(255,255,255,.12);
  --text:#e5e7eb;
  --muted:#94a3b8;

  --accent:#f97316;
  --accent2:#22c55e;
  --accent3:#60a5fa;
  --accent4:#a78bfa;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% -20%, rgba(249,115,22,.18), transparent 60%),
    radial-gradient(800px 400px at 80% 10%, rgba(96,165,250,.12), transparent 60%),
    linear-gradient(#020617,#020617);
}

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

.bgGlow{
  position:fixed; inset:0;
  pointer-events:none;
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(167,139,250,.12), transparent 60%);
}

.wrap{
  width:min(1080px, 92vw);
  margin:0 auto;
  padding:22px 0 90px;
}

/* ================= HEADER ================= */

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(2,6,23,.45);
  border:1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.mark{
  width:36px;height:36px;
  border-radius:14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
}

.mark i{
  color:var(--accent);
  filter:drop-shadow(0 0 12px rgba(249,115,22,.35));
}

.name{display:flex;flex-direction:column}
.name .title{
  font-weight:1100;
  letter-spacing:2px;
  background: linear-gradient(90deg,var(--accent),var(--accent4),var(--accent3));
  -webkit-background-clip:text;
  color:transparent;
}
.name .sub{
  font-size:11px;
  color:var(--muted);
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  font-weight:800;
  font-size:12px;
}

/* ================= HERO ================= */

.hero{
  text-align:center;
  margin-top:26px;
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  font-weight:900;
  font-size:12px;
}

.hero h1{
  margin:14px 0 10px;
  font-size: clamp(32px,5vw,48px);
  font-weight:1200;
}

.hero .spark{filter:drop-shadow(0 0 10px rgba(249,115,22,.6))}

.lead{
  max-width:780px;
  margin:0 auto;
  color:#cbd5e1;
  line-height:1.6;
}

.miniInfo{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.mini{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  font-weight:800;
  font-size:12px;
}

/* ================= CARD ================= */

.card{
  margin-top:26px;
  background: linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}

.cardHead{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.cardHead h2{
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.badge{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
}

/* ================= FORM ================= */

form{margin-top:10px}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media(max-width:800px){
  .grid2{grid-template-columns:1fr}
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}

label{
  font-weight:800;
  font-size:13px;
}

input,select,textarea{
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  color:#fff;
  outline:none;
  resize:vertical;
}

input:focus,select:focus,textarea:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(249,115,22,.15);
}

.hint{
  font-size:12px;
  color:var(--muted);
}

.roleBox{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  border:1px dashed var(--border);
}

.roleTitle{
  font-weight:900;
  margin-bottom:10px;
}

.roleSection{display:none}
.roleSection.active{display:block}

.agree{
  margin-top:12px;
}

.check{
  display:flex;
  gap:10px;
  font-size:13px;
  color:#cbd5e1;
}

.actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight:1000;
  cursor:pointer;
}

.btn.primary{
  background: linear-gradient(135deg,var(--accent),#fb923c);
  border-color: rgba(249,115,22,.4);
}

.btn.ghost{opacity:.8}

.btn:hover{transform:translateY(-1px)}

.tiny{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}

/* ================= FOOTER ================= */

.footer{
  text-align:center;
  margin-top:22px;
  font-size:13px;
  color:var(--muted);
}

/* ================= TOAST ================= */

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  padding:10px 14px;
  border-radius:999px;
  background: rgba(2,6,23,.7);
  border:1px solid var(--border);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  font-weight:900;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(-6px);
}
