:root{
  --bg:#07130c;
  --card:#0c2015;
  --line:rgba(255,255,255,.12);
  --text:#eafff3;
  --muted:rgba(234,255,243,.65);
  --green:#17d37a;
  --green2:#0fb85f;
  --yellow:#f7c948;
}

/* reset */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Kanit',system-ui;
  color:var(--text);
  background:
    radial-gradient(900px 400px at 20% -10%, rgba(23,211,122,.25), transparent),
    radial-gradient(700px 350px at 90% 0%, rgba(247,201,72,.18), transparent),
    linear-gradient(180deg,#06130c,#0b1f15);
}

/* glow bg */
.bgOrbs{position:fixed;inset:0;pointer-events:none}
.orb{position:absolute;filter:blur(40px);opacity:.6}
.o1{width:320px;height:320px;left:-120px;top:120px;background:#17d37a;border-radius:50%}
.o2{width:260px;height:260px;right:-120px;top:220px;background:#f7c948;border-radius:50%}
.o3{width:380px;height:380px;left:30%;bottom:-200px;background:#0fb85f;border-radius:50%}

/* layout */
.wrap{max-width:1200px;margin:auto;padding:18px}
.hdr{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px;border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.brand{display:flex;gap:12px;align-items:center}
.brandMark{
  width:100px;
  height:100px;
  background-image:url("img/logo.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.badge{
  display:flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(23,211,122,.45);
  background:rgba(23,211,122,.15);
  font-weight:800;font-size:12px;
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(23,211,122,.2);
}

.gridLayout{
  margin-top:16px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
}
@media(max-width:900px){
  .gridLayout{grid-template-columns:1fr}
}

.card{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.cardHead{
  display:flex;justify-content:space-between;align-items:end;
  margin-bottom:10px;
}
.sub{font-size:12px;color:var(--muted)}

h1{margin:0;font-size:20px}
h2{margin:0;font-size:16px}
h3{margin:0 0 6px}

.drop{
  display:block;margin-top:6px;
  border:1px dashed rgba(23,211,122,.5);
  border-radius:18px;
  background:rgba(0,0,0,.25);
  cursor:pointer;
}
.drop input{display:none}
.dropInner{
  display:flex;align-items:center;gap:12px;
  padding:14px;
}
.dropIcon{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(23,211,122,.18);
}
.dropCTA{
  margin-left:auto;
  padding:8px 12px;border-radius:14px;
  background:rgba(23,211,122,.25);
  font-weight:800;
}

.lbl{display:block;margin-top:12px;font-weight:800}
.seg{
  margin-top:6px;
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
}
.segItem{
  position:relative;
  padding:12px;border-radius:16px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  cursor:pointer;
}
.segItem input{position:absolute;inset:0;opacity:0}
.segItem span{font-weight:800}
.segItem em{font-style:normal;font-size:12px;color:var(--muted)}
.segItem:has(input:checked){
  border-color:var(--green);
  background:rgba(23,211,122,.15);
}

textarea{
  width:100%;margin-top:6px;
  background:rgba(0,0,0,.3);
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--text);
  padding:12px;
}

.pill{
  margin-top:10px;
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  font-weight:800;
}
.pill input{accent-color:var(--green)}

.btn{
  margin-top:12px;
  width:100%;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(23,211,122,.6);
  background:linear-gradient(135deg,rgba(23,211,122,.35),rgba(15,184,95,.2));
  font-weight:900;
  cursor:pointer;
}

.divider{
  height:1px;background:var(--line);
  margin:14px 0;
}

.grid{
  margin-top:10px;
  display:grid;gap:10px;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
}
.thumb{
  border-radius:14px;overflow:hidden;
  border:1px solid var(--line);
}
.thumb img{width:100%;height:120px;object-fit:cover}

.log{
  min-height:120px;
  background:rgba(0,0,0,.35);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  font-family:monospace;
  font-size:12px;
}

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