* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body {
  color: #101b12;
  background: linear-gradient(180deg, #bdf0ff 0%, #f7fff4 54%, #e9f8da 100%);
}
.mobile-shell { display: grid; place-items: start center; }
.app { width: min(100%, 460px); min-height: 100svh; padding: max(16px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom)); }
.brand { display: flex; align-items: center; gap: 14px; padding: 4px 0 16px; }
.brand img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; box-shadow: 0 14px 36px rgba(14, 82, 26, .18); }
.brand p, .brand h1 { margin: 0; }
.brand p { font-size: 13px; color: #477248; }
.brand h1 { font-size: 30px; line-height: 1; letter-spacing: 0; }
.panel, .done {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(25, 104, 49, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(29, 90, 56, .14);
  padding: 18px;
  backdrop-filter: blur(12px);
}
.step { display: none; }
.step.active { display: grid; gap: 12px; }
h2 { margin: 0 0 4px; font-size: 22px; line-height: 1.15; }
label { display: grid; gap: 7px; font-size: 13px; color: #34543a; font-weight: 650; }
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c8dcc4;
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
  color: #102016;
  background: #fff;
  outline: none;
}
input:focus { border-color: #58b931; box-shadow: 0 0 0 3px rgba(94, 203, 54, .18); }
.checks { display: grid; gap: 10px; }
.checks label {
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #cfe2c9;
  border-radius: 8px;
  background: #fff;
  color: #162414;
}
.checks input { width: 18px; min-height: 18px; accent-color: #64c832; }
.file-card {
  min-height: 94px;
  padding: 14px;
  border: 1px dashed #8fbd7d;
  border-radius: 8px;
  background: #fbfff8;
}
.file-card input { position: absolute; opacity: 0; pointer-events: none; }
.file-card span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  color: #12330e;
  background: #d8ff68;
}
.file-card.has-file { border-style: solid; background: #efffe8; }
.geo-btn, button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.geo-btn { background: #152a1a; color: #fff; }
.geo-status { margin: 0; color: #617160; font-size: 13px; line-height: 1.35; }
.geo-status.ok { color: #1f7f21; }
.geo-status.error { color: #b51d1d; }
.actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; margin-top: 18px; }
.primary { background: #72dd33; color: #102016; }
.ghost { background: #edf4eb; color: #26442b; }
.hidden { display: none !important; }
.done { margin-top: 24px; text-align: center; }
.done img { width: 86px; height: 86px; object-fit: cover; border-radius: 8px; }
.done p { color: #496149; line-height: 1.45; }
@media (max-width: 360px) {
  .app { padding-left: 12px; padding-right: 12px; }
  .brand h1 { font-size: 26px; }
  .panel { padding: 14px; }
}
