/* zecpons — the launch form and the owner panel, kept apart from the base sheet. */
.f { display: block; margin-bottom: 14px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lbl { display: block; font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-bottom: 7px; }
.lbl b { color: var(--ink); }
#launchForm input:not([type="range"]),
#launchForm textarea {
  display: block; width: 100%; font: 14.5px/1.4 var(--ff); color: var(--ink);
  background: #fff; border: 1px solid var(--stroke-2); border-radius: 10px; padding: 11px 13px; outline: none; resize: none;
  transition: border-color .15s, box-shadow .15s;
}
#launchForm input:focus, #launchForm textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(21, 21, 21, .06); }
#launchForm input::placeholder, #launchForm textarea::placeholder { color: var(--mute-2); }
#lSym { font-family: var(--ff-m); text-transform: uppercase; letter-spacing: .06em; }
.opt { font-family: var(--ff); font-size: 10.5px; letter-spacing: 0; text-transform: none; color: var(--mute-2); }

/* the range: an ink track with a gold thumb */
#launchForm input[type="range"] { width: 100%; height: 26px; -webkit-appearance: none; appearance: none; background: transparent; margin: 0; }
#launchForm input[type="range"]::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--ink) 0, var(--ink) var(--fill, 26%), var(--paper-3) var(--fill, 26%)); }
#launchForm input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -7px; border-radius: 50%; background: var(--gold); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, .25); cursor: pointer; transition: transform .15s; }
#launchForm input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
#launchForm input[type="range"]::-moz-range-track { height: 4px; border-radius: 999px; background: var(--paper-3); }
#launchForm input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 2px solid #fff; cursor: pointer; }

.drop { position: relative; display: grid; place-items: center; min-height: 118px; border: 1.5px dashed var(--stroke-2); border-radius: 10px; background: var(--paper-2); cursor: pointer; overflow: hidden; padding: 12px; text-align: center; transition: border-color .15s, background .15s; }
.drop:hover, .drop.over { border-color: var(--ink); background: #fff; }
.drop .ph { font-size: 13px; color: var(--mute); }
.drop img { max-width: 112px; max-height: 112px; border-radius: 10px; display: block; }
#launchForm [hidden] { display: none !important; }   /* the raw file input is display:block by default */

/* the launcher's log rows. Scoped under .steps-log: a bare `.step` here collided with the
   five step CARDS on the home page and laid their contents out in a row. */
.steps-log { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; font-size: 13px; }
.steps-log .step { display: flex; gap: 8px; color: var(--mute); }
.steps-log .step .i { color: var(--mute-2); flex: 0 0 auto; }
.steps-log .step.ok .i { color: var(--live); }
.steps-log .step.err, .steps-log .step.err .i { color: var(--red); }
.steps-log .step a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.steps-log .step code { font-size: 12px; color: var(--ink); }

.owner-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.owner-btns .pill { flex: 1 1 auto; }
#oMsg a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 700px) { .f2 { grid-template-columns: 1fr; } }
