:root{
  --bg:#fedb3e;
  --text:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --stroke:rgba(15,23,42,.12);
  --shadow: 0 16px 35px rgba(2,6,23,.14);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  max-width: 560px;
  margin:0 auto;
  padding: 28px 18px 40px;
  min-height: 100dvh;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 8px 4px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:46px;
  height:46px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(15,23,42,.12);
  display:grid;
  place-items:center;
  font-weight: 1000;
  font-size: 22px;
  box-shadow: 0 8px 0 rgba(0,0,0,.05);
}

.title{
  font-weight: 1000;
  letter-spacing: -.02em;
  font-size: 20px;
  text-transform: lowercase;
}

.subtitle{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.card{
  background: var(--card);
  border: 2px solid rgba(15,23,42,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h1{
  margin:0 0 8px 0;
  font-size: 18px;
  font-weight: 950;
}

.muted{ color: var(--muted); margin:0; line-height:1.5; }

.actions{
  display:flex;
  gap:10px;
  margin-top: 14px;
  flex-wrap:wrap;
}

.btn{
  flex: 1 1 auto;
  min-width: 140px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 2px solid #0b1220;
  background:#fff;
  color:#0f172a;
  text-decoration:none;
  font-weight: 950;
  cursor:pointer;
  user-select:none;
}

.btn.primary{
  background:#0f172a;
  color:#fff;
}

.btn:active{ transform: scale(.99); }

.status{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--stroke);
  font-weight: 800;
}

.hint{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
